mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ check-pass
 | 
						|
 | 
						|
struct S(u8);
 | 
						|
 | 
						|
impl S {
 | 
						|
    fn method1() -> Self {
 | 
						|
        Self(0)
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
macro_rules! define_method { () => {
 | 
						|
    impl S {
 | 
						|
        fn method2() -> Self {
 | 
						|
            Self(0) // OK
 | 
						|
        }
 | 
						|
    }
 | 
						|
}}
 | 
						|
 | 
						|
define_method!();
 | 
						|
 | 
						|
fn main() {}
 |