source:
tests/exceptions/type-check.cfa
@
8ca60e4
Last change on this file since 8ca60e4 was d00d581, checked in by , 3 years ago | |
---|---|
|
|
File size: 226 bytes |
Line | |
---|---|
1 | // Check that the exception type check works. |
2 | |
3 | exception truth {}; |
4 | |
5 | int main(int argc, char * argv[]) { |
6 | try {} catch (int e) {} |
7 | try {} catch (truth & e) {} |
8 | try {} catchResume (int e) {} |
9 | try {} catchResume (truth & e) {} |
10 | } |
Note: See TracBrowser
for help on using the repository browser.