mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
14 lines
179 B
C++
14 lines
179 B
C++
|
// Test throwing a constant int
|
||
|
#include <stdio.h>
|
||
|
|
||
|
static void foo() { throw 5; }
|
||
|
int main() {
|
||
|
try {
|
||
|
foo();
|
||
|
} catch (...) {
|
||
|
printf("All ok\n");
|
||
|
return 0;
|
||
|
}
|
||
|
return 1;
|
||
|
}
|