about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-lang-items.rs
blob: d6fd5472a0c1db3dc5063b5c460ab224c3fa0593 (plain)
1
2
3
4
5
#[lang = "foo"] //~ ERROR lang items are subject to change
                //~^ ERROR definition of an unknown lang item: `foo`
trait Foo {}

fn main() {}