mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* config update * disable a questionable test * remove c++ exception handling IDs, new impl doesn't require it anymore * C++ based exceptions finally work * fixes bootstrapping problem in C++ mode * teach GCC it's 2020 now * more bugfixes for C++ based exception handling * apply cooldome's patch * another attempt to enable C++11 * bug fix Co-authored-by: Araq <rumpf_a@web.de> Co-authored-by: cooldome <ariabushenko@bk.ru>
11 lines
179 B
Nim
11 lines
179 B
Nim
discard """
|
|
targets: "cpp"
|
|
outputsub: "Error: unhandled unknown cpp exception"
|
|
exitcode: 1
|
|
disabled: true
|
|
"""
|
|
type Crap {.importcpp: "int".} = object
|
|
|
|
var c: Crap
|
|
raise c
|