Merge pull request #4816 from BrzVlad/fix-remoting-exception
[mono.git] / mcs / tests / test-424.cs
1 using System;
2
3 class C
4 {
5         public static int Main ()
6         {
7                 const string s = "oups";
8                 if (s.Length != 4) {
9                         Console.WriteLine (s.Length);
10                         return 2;
11                 }
12                 
13                 return 0;
14         }
15 }