Files
rust/tests/ui/resolve/prim-crate-partial-res.rs

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

9 lines
163 B
Rust
Raw Normal View History

//@ aux-build: empty.rs
extern crate empty as usize;
fn foo() -> usize<()> { 0 }
//~^ ERROR type arguments are not allowed on builtin type `usize`
fn main() {}