2014-06-20 18:39:23 -05:00
|
|
|
#![feature(lang_items)]
|
|
|
|
|
2014-02-24 20:42:40 -06:00
|
|
|
fn main() {}
|
|
|
|
|
2019-01-01 17:21:05 -06:00
|
|
|
#![lang = "foo"] //~ ERROR an inner attribute is not permitted in this context
|
|
|
|
//~| ERROR definition of an unknown language item: `foo`
|
2014-03-20 13:21:17 -05:00
|
|
|
fn foo() {}
|