blob: c2a2f28254226a40672eb15e83cf55c55534b982 [file] [log] [blame]
// compile-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() {}