about summary refs log tree commit diff
path: root/src/test/ui/parser/attr.rs
blob: 91a4abbd03860f1f1c051af930f33da7448ad0ce (plain)
1
2
3
4
5
6
7
#![feature(lang_items)]

fn main() {}

#![lang = "foo"] //~ ERROR an inner attribute is not permitted in this context
                 //~| ERROR definition of an unknown language item: `foo`
fn foo() {}