Add tests

This commit is contained in:
varkor 2017-12-21 13:12:58 +00:00
parent e4c02e551b
commit c1aa017645

View file

@ -45,4 +45,12 @@ struct foo7 {
type __ = isize; //~ ERROR type `__` should have a camel case name such as `CamelCase`
struct X86_64;
struct X86__64; //~ ERROR type `X86__64` should have a camel case name such as `X86_64`
struct Abc_123; //~ ERROR type `Abc_123` should have a camel case name such as `Abc123`
struct A1_b2_c3; //~ ERROR type `A1_b2_c3` should have a camel case name such as `A1B2C3`
fn main() { }