]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pub/pub-restricted-non-path.rs
Auto merge of #98638 - bjorn3:less_string_interning, r=tmiasko
[rust.git] / src / test / ui / pub / pub-restricted-non-path.rs
1 #![feature(pub_restricted)]
2
3 pub (.) fn afn() {} //~ ERROR expected identifier
4
5 fn main() {}