mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
11 lines
136 B
Rust
11 lines
136 B
Rust
struct Fail<T>;
|
|
//~^ ERROR: type parameter `T` is never used
|
|
|
|
impl Fail<i32> {
|
|
const C: () = ();
|
|
}
|
|
|
|
fn main() {
|
|
Fail::<()>::C
|
|
}
|