mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +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() {}
 | 
