summary refs log tree commit diff stats
path: root/tests/reject/topaque.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reject/topaque.nim')
-rwxr-xr-xtests/reject/topaque.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/reject/topaque.nim b/tests/reject/topaque.nim
deleted file mode 100755
index ac390835b..000000000
--- a/tests/reject/topaque.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-discard """
-  file: "topaque.nim"
-  line: 16
-  errormsg: "undeclared field: \'buffer\'"
-"""
-# Test the new opaque types

-

-import 

-  mopaque

-  

-var

-  L: TLexer

-  

-L.filename = "ha"

-L.line = 34

-L.buffer[0] = '\0' #ERROR_MSG undeclared field: 'buffer'

-
-