ci: fix fmt_test.v

Delyan Angelov 2022-04-15 21:16:28 +03:00 committed by Jef Roosens
parent aef5b1a05c
commit b087105ce6
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
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 |