mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
170 B
Rust
12 lines
170 B
Rust
//@ check-pass
|
|
struct Foo<T>(T);
|
|
impl<T> Foo<T> {
|
|
const VALUE: usize = std::mem::size_of::<T>();
|
|
}
|
|
|
|
fn test<T>() {
|
|
let _ = [0; Foo::<u8>::VALUE];
|
|
}
|
|
|
|
fn main() {}
|