v/vlib/v/fmt/tests/comments_keep.vv

19 lines
219 B
V

struct User {
name string // name
// last comment
// last comment2
}
fn main() {
u := User{
name: 'Peter'
}
if true {
}
// some comment after an if without else
n := sizeof(User)
// else
// else {
// }
}