Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
isgg-invalid-outer-attttr-issue-127930.rs
blob: 26541a89a565a335b6b31a2fd2aff4438e69e526 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
dead_code
)]
fn
foo
()
{}
#![
feature
(
iter_array_chunks
)]
//~ ERROR an inner attribute is not permitted in this context
fn
bar
()
{}
fn
main
()
{
foo
();
bar
();
}