// Test to ensure private traits are inaccessible with UFCS angle-bracket syntax. mod foo { trait Bar { fn baz() {} } impl Bar for i32 {} } fn main() { ::baz(); //~ERROR trait `Bar` is private }