1 // run-pass
2 #![allow(dead_code)]
3 #![allow(unused_variables)]
4 // Test that removed keywords are allowed as identifiers.
main()5 fn main () {
6     let offsetof = ();
7     let alignof = ();
8     let sizeof = ();
9     let pure = ();
10 }
11 
offsetof()12 fn offsetof() {}
alignof()13 fn alignof() {}
sizeof()14 fn sizeof() {}
pure()15 fn pure() {}
16