Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
ui
/
span
/
issue-36530.rs
blob: 70e04bf7ee6e81216918bf504e5925ef0596fb1d [
file
] [
log
] [
blame
]
// gate-test-custom_inner_attributes
#![
feature
(
register_attr
)]
#![
register_attr
(
foo
)]
#[
foo
]
mod
foo
{
#![
foo
]
//~ ERROR custom inner attributes are unstable
}
fn
main
()
{}