rust/tests/ui/resolve/issue-108529.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
102 B
Rust
Raw Normal View History

#![allow(nonstandard_style)]
use f::f::f; //~ ERROR
trait f {
extern "C" fn f();
}
fn main() {}