Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
undefined-macro-in-impl.rs
blob: 64b394f984be0dcbce9ab25162ba62a12c1cb335 [
file
] [
log
] [
blame
] [
edit
]
//! regression test for https://github.com/rust-lang/rust/issues/19734
fn
main
()
{}
struct
Type
;
impl
Type
{
undef
!();
//~^ ERROR cannot find macro `undef` in this scope
}