blob: 95cefe53938fb0b0c35a6a96b5c10f3732d5cb68 (
plain)
1
2
3
4
5
6
7
8
|
// 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() {}
|