rust/src/test/ui/custom-attribute-multisegment.rs
2018-12-25 21:08:33 -07:00

9 lines
225 B
Rust

// Unresolved multi-segment attributes are not treated as custom.
#![feature(custom_attribute)]
mod existent {}
#[existent::nonexistent] //~ ERROR failed to resolve: could not find `nonexistent` in `existent`
fn main() {}