]> git.lizzy.rs Git - rust.git/blob - tests/ui/custom-attribute-multisegment.rs
Rollup merge of #106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
[rust.git] / tests / ui / custom-attribute-multisegment.rs
1 // Unresolved multi-segment attributes are not treated as custom.
2
3 mod existent {}
4
5 #[existent::nonexistent] //~ ERROR failed to resolve: could not find `nonexistent` in `existent`
6 fn main() {}