mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
297 B
Nim
17 lines
297 B
Nim
discard """
|
|
exitcode: 1
|
|
outputsub: '''
|
|
Unhandled exception: Cannot read property 'charCodeAt' of null [<foreign exception>]
|
|
[FAILED] Bad test
|
|
'''
|
|
matrix: "-d:nodejs"
|
|
targets: "js"
|
|
joinable: false
|
|
"""
|
|
|
|
# bug #16978
|
|
import unittest
|
|
test "Bad test":
|
|
var x: cstring = nil
|
|
let y = x[0]
|