2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2025-03-29 17:24:03 +00:00
|
|
|
#[cfg(false)]
|
2015-01-25 22:05:03 +01:00
|
|
|
macro_rules! foo { () => (1) }
|
2013-10-07 15:40:46 -07:00
|
|
|
|
2024-04-07 00:43:00 +02:00
|
|
|
#[cfg(not(FALSE))]
|
2015-01-25 22:05:03 +01:00
|
|
|
macro_rules! foo { () => (2) }
|
2013-10-07 15:40:46 -07:00
|
|
|
|
|
|
|
|
pub fn main() {
|
2015-01-25 22:05:03 +01:00
|
|
|
assert_eq!(foo!(), 2);
|
2013-10-07 15:40:46 -07:00
|
|
|
}
|