ci: fix failing fn_args.vv (use `zu8` as a temporary name of the unaliased `u8` type, since `uu8` is already used in fn_args.vv as a function name)

pull/10990/head
Delyan Angelov 2021-07-29 10:14:55 +03:00
parent 7a9b326200
commit 7547882c11
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -670,7 +670,7 @@ pub fn (mut t Table) register_builtin_type_symbols() {
}
)
t.register_type_symbol(kind: .interface_, name: 'IError', cname: 'IError', mod: 'builtin')
t.register_type_symbol(kind: .u8, name: 'uu8', cname: 'uu8', mod: 'builtin')
t.register_type_symbol(kind: .u8, name: 'zu8', cname: 'zu8', mod: 'builtin')
}
[inline]