v2 / vlib / v / tests / keyword_escaping_test.v
11 lines · 11 sloc · 131 bytes · f5036629ca8044bf21faf57e22a7ee292334e83b
Raw
1fn test_escapes() {
2 @if := 0
3 @for := 0
4 auto := 0
5 calloc := 0
6 stdout := 0
7 signed := 0
8 @true := 0
9 @false := 0
10 assert true
11}
12