diff --git a/examples/tests/invalid/global_symbols.test.w b/examples/tests/invalid/global_symbols.test.w index e4c7b027585..a2c459ba3d5 100644 --- a/examples/tests/invalid/global_symbols.test.w +++ b/examples/tests/invalid/global_symbols.test.w @@ -1,4 +1,8 @@ let log = "hi"; +// ^Error: Symbol "log" already defined in this scope let assert = "there"; +// ^Error: Symbol "assert" already defined in this scope let unsafeCast = "wingnuts"; +// ^Error: Symbol "unsafeCast" already defined in this scope let nodeof = "!"; +// ^Error: Symbol "nodeof" already defined in this scope