summary refs log tree commit diff stats
path: root/tests/parser/tunicodeidents.nim
diff options
context:
space:
mode:
authorOscar Nihlgård <oscarnihlgard@gmail.com>2018-06-05 21:05:13 +0200
committerOscar Nihlgård <oscarnihlgard@gmail.com>2018-06-05 21:05:13 +0200
commitc69b88688fe9a531a88d693e9815af9caaf21396 (patch)
treebb854afff5c7d2f17baec4277afae3aeb9f40412 /tests/parser/tunicodeidents.nim
parentfd2823636820e995f0d1c4370542ee1dbfc55442 (diff)
downloadNim-c69b88688fe9a531a88d693e9815af9caaf21396.tar.gz
Combine some of the lexer tests into a single file
Diffstat (limited to 'tests/parser/tunicodeidents.nim')
-rw-r--r--tests/parser/tunicodeidents.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/parser/tunicodeidents.nim b/tests/parser/tunicodeidents.nim
deleted file mode 100644
index 3347eb7a9..000000000
--- a/tests/parser/tunicodeidents.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-discard """
-    action: run
-"""
-
-# #7884
-
-type Obj = object
-    ö: int
-
-let o = Obj(ö: 1)
-doAssert o.ö == 1