mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 16:26:10 +00:00
9 lines
163 B
Rust
9 lines
163 B
Rust
//@ 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() {}
|