mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
336 B
Rust
25 lines
336 B
Rust
//@ run-pass
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
#![cfg(FALSE)]
|
|
|
|
fn method(&self) -> bool { false }
|
|
}
|
|
|
|
impl Foo {
|
|
#![cfg(not(FALSE))]
|
|
|
|
// check that we don't eat attributes too eagerly.
|
|
#[cfg(FALSE)]
|
|
fn method(&self) -> bool { false }
|
|
|
|
fn method(&self) -> bool { true }
|
|
}
|
|
|
|
|
|
pub fn main() {
|
|
assert!(Foo.method());
|
|
}
|