Bump corefx
[mono-project.git] / mono / tests / exception14.cs
blob02626fa269fd594cf28b88d7f28b4c7b64681fbd
1 using System;
3 class Class1 {
4 static int Main(string[] args)
6 string s1 = "original";
8 try {
9 bool huh = s1.StartsWith(null);
10 } catch (ArgumentNullException) {
13 if (s1.StartsWith("o")){
14 return 0;
15 } else {
16 return 1;