1 // Copyright (c) Microsoft. All rights reserved.
2 // Licensed under the MIT license. See LICENSE file in the project root for
3 // full license information.
4 
5 #include <stdio.h>
6 
7 int main(void)
8 {
9 
10 printf("pass");
11 
12 return 0;
13 
14 try {} catch (...) {}
15 
16 }
17 
18