Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-40845.rs
blob: a4ede6adfa3c253081f64cc2ebc29f65672ec19c [
file
] [
log
] [
blame
]
trait
T
{
m
!();
}
//~ ERROR cannot find macro `m` in this scope
struct
S
;
impl
S
{
m
!();
}
//~ ERROR cannot find macro `m` in this scope
fn
main
()
{}