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();
}