]> git.proxmox.com Git - rustc.git/blob - tests/ui/pub/pub-restricted-non-path.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / pub / pub-restricted-non-path.rs
1 #![feature(pub_restricted)]
2
3 pub (.) fn afn() {} //~ ERROR expected identifier
4
5 fn main() {}