Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
proc-macro
/
attribute-spans-preserved.rs
blob: c01fce90593babeba2f19fdab2aebdf8e4f5e2c6 [
file
] [
log
] [
blame
]
// aux-build:attribute-spans-preserved.rs
extern
crate attribute_spans_preserved
as
foo
;
use
foo
::
foo
;
#[
foo
(
let
y
:
u32
=
"z"
;
)
]
//~ ERROR: mismatched types
#[
bar
{
let
x
:
u32
=
"y"
;
}
]
//~ ERROR: mismatched types
fn
main
()
{
}