| 1 | import time |
| 2 | |
| 3 | // builtin__ prefix should always produce an error |
| 4 | // time is imported so the time__ prefix should always produce an error |
| 5 | // os is not imported so the os__ prefix should not produce an error |
| 6 | |
| 7 | fn builtin__string_str() { |
| 8 | } |
| 9 | |
| 10 | fn time__utc() { |
| 11 | } |
| 12 | |
| 13 | fn os__getwd() { |
| 14 | } |
| 15 | |
| 16 | fn main() { |
| 17 | builtin__string_str := 'Hello V!'.str() |
| 18 | time__now := time.now() |
| 19 | os__log := 'Hello V!' |
| 20 | println(builtin__string_str) |
| 21 | println(time__now) |
| 22 | println(os__log) |
| 23 | } |
| 24 |