rust/src/test/ui/pub/pub-restricted-non-path.rs
2018-12-25 21:08:33 -07:00

6 lines
93 B
Rust

#![feature(pub_restricted)]
pub (.) fn afn() {} //~ ERROR expected identifier
fn main() {}