blob: e291268be86e56333249110c4e63dcc58a4f1e75 [file] [log] [blame]
#![allow(non_camel_case_types)]
extern crate alloc;
mod foo {
pub trait alloc {
fn do_something();
}
}
use foo::alloc;
//~^ ERROR E0254
fn main() {}