blob: 636e8c4885e6f2ab9736bbf30f602ca8ceae7dbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// run-pass
struct Foo;
impl Foo {
#![cfg(cfg_that_surely_doesnt_exist)]
fn method(&self) -> bool { false }
}
impl Foo {
#![cfg(not(cfg_that_surely_doesnt_exist))]
// check that we don't eat attributes too eagerly.
#[cfg(cfg_that_surely_doesnt_exist)]
fn method(&self) -> bool { false }
fn method(&self) -> bool { true }
}
pub fn main() {
assert!(Foo.method());
}
|