vxx2 / vlib / v / checker / tests / import_symbol_private_err.vv
14 lines · 13 sloc · 228 bytes · 45c1c1ab41f1aba5f84f8ddbbf5287f1272fc81b
Raw
1import v.scanner
2import v.parser
3import time { vpc_now }
4import io { ReaderWriterImpl }
5
6fn main() {
7 println(scanner.single_quote)
8 println(parser.State.html)
9 vpc_now()
10 _ = {
11 'h': 2
12 }.exists('h')
13 _ = ReaderWriterImpl{}
14}
15