Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
attribute-spans-preserved.rs
blob: 946b16a0c80eb1b4011467f3f6c2c1907d9e62db [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{
}