ci: fix fmt_test.v
parent
aef5b1a05c
commit
b087105ce6
|
@ -1,4 +1,4 @@
|
|||
fn main() {
|
||||
a := 1.
|
||||
a := 1.0
|
||||
println(a)
|
||||
}
|
||||
|
|
|
@ -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 |
|
||||
|
|
Loading…
Reference in New Issue