mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
167 B
Rust
16 lines
167 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
fn f<T>() -> bool {
|
|
enum E<T> { V(T) }
|
|
|
|
struct S<T>(T);
|
|
|
|
true
|
|
}
|
|
|
|
fn main() {
|
|
let b = f::<isize>();
|
|
assert!(b);
|
|
}
|