mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
9 lines
102 B
Rust
9 lines
102 B
Rust
|
#![allow(nonstandard_style)]
|
||
|
use f::f::f; //~ ERROR
|
||
|
|
||
|
trait f {
|
||
|
extern "C" fn f();
|
||
|
}
|
||
|
|
||
|
fn main() {}
|