mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
f058bb0fcf
Fixes #108529
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() {}
|