blob: 30a112d2271b9d53ddb8979e5cef011cefefb3a3 [file] [log] [blame]
#![feature(pub_restricted)]
struct Bar(pub(()));
struct Foo {
pub(crate) () foo: usize, //~ ERROR expected identifier
}
fn main() {}