[tests] Disable test on llvm
[mono.git] / mono / tests / exception14.cs
1 using System;
2
3 class Class1 {
4         static int Main(string[] args)
5         {
6                 string s1 = "original";
7
8                 try {
9                         bool huh = s1.StartsWith(null);
10                 } catch (ArgumentNullException) {
11                 }
12
13                 if (s1.StartsWith("o")){
14                         return 0;
15                 } else {
16                         return 1;
17                 }
18         }
19 }
20
21