2024-08-17 05:45:10 +00:00
|
|
|
#[cfg(doc)] //~ NOTE the item is gated here
|
|
|
|
|
pub struct Foo; //~ NOTE found an item that was configured out
|
2019-09-06 10:51:52 +02:00
|
|
|
|
|
|
|
|
fn main() {
|
2024-08-17 05:45:10 +00:00
|
|
|
let f = Foo; //~ ERROR cannot find value `Foo` in this scope
|
|
|
|
|
//~^ NOTE not found in this scope
|
2019-09-06 10:51:52 +02:00
|
|
|
}
|