checker: allow struct fields starting with capitals in builtin (#5998)

pull/5981/head
spaceface777 2020-08-01 23:01:40 +02:00 committed by GitHub
parent 1feca22e28
commit 4f37202b72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ pub fn (mut c Checker) struct_decl(decl ast.StructDecl) {
c.check_valid_pascal_case(decl.name, 'struct name', decl.pos)
}
for i, field in decl.fields {
if decl.language == .v {
if !c.is_builtin_mod && decl.language == .v {
c.check_valid_snake_case(field.name, 'field name', field.pos)
}
for j in 0 .. i {