Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
issue-57523.rs
blob: d55ae4b57854fa22e87a2cb2b2247e0fbe794a87 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}