mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
169 B
Rust
15 lines
169 B
Rust
#![allow(non_camel_case_types)]
|
|
|
|
extern crate alloc;
|
|
|
|
mod foo {
|
|
pub trait alloc {
|
|
fn do_something();
|
|
}
|
|
}
|
|
|
|
use foo::alloc;
|
|
//~^ ERROR E0254
|
|
|
|
fn main() {}
|