diff options
author | Yuriy Glukhov <yglukhov@users.noreply.github.com> | 2017-11-19 03:32:39 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-11-19 02:32:39 +0100 |
commit | e1ed34627f0f99e580e3e20d5782f582a08c887e (patch) | |
tree | a219f9742755ef447ddc7e7c4519953de3e3867d /tests | |
parent | 963184fea6858b270e1d6a69707c94b2511674dc (diff) | |
download | Nim-e1ed34627f0f99e580e3e20d5782f582a08c887e.tar.gz |
Fixes #5979 (#5980)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cpp/tcasts.nim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/cpp/tcasts.nim b/tests/cpp/tcasts.nim new file mode 100644 index 000000000..35f06234d --- /dev/null +++ b/tests/cpp/tcasts.nim @@ -0,0 +1,10 @@ +discard """ + cmd: "nim cpp $file" + output: "" +""" + +block: #5979 + var a = 'a' + var p: pointer = cast[pointer](a) + var c = cast[char](p) + doAssert(c == 'a') |