mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			343 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			343 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| macro_rules! foo {
 | |
|     () => {
 | |
|         struct Bar;
 | |
|         struct Baz;
 | |
|     }
 | |
| }
 | |
| 
 | |
| macro_rules! grault {
 | |
|     () => {
 | |
|         foo!();
 | |
|         struct Xyzzy;
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn static_assert_exists<T>() { }
 | |
| 
 | |
| fn main() {
 | |
|     grault!();
 | |
|     static_assert_exists::<Bar>();
 | |
|     static_assert_exists::<Baz>();
 | |
|     static_assert_exists::<Xyzzy>();
 | |
| }
 | 
