ci: fix fmt_test.v

master
Delyan Angelov 2022-04-15 21:16:28 +03:00
parent 375361b787
commit c7aedb8e8d
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,4 @@
fn main() {
a := 1.
a := 1.0
println(a)
}

View File

@ -4,9 +4,8 @@
type FooBar= Foo | Bar
pub type PublicBar = Foo | Bar | FooBar
type Uint = u16 | u64
| u32
| byte // This should stay on the same line
type Uint = u8 |u16 | u64
| u32 // This should stay on the same line
type
Float =
f32 |