[runtime] Remove all NACL support. It was unmaintained for a long time. (#4955)
[mono.git] / mono / tests / string.cs
1 using System;
2
3 public class TestString {
4
5         public static int Main() {
6                 string a = "ddd";
7                 string b = "ddd";
8                 string c = "ddda";
9                 if (a != b)
10                         return 1;
11                 if (c != String.Concat(b , "a"))        
12                         return 2;
13                 if (!System.Object.ReferenceEquals(a, b))
14                         return 3;
15                 if (System.Object.ReferenceEquals(c, String.Concat(b, "a")))
16                         return 4;
17                 if (!Object.ReferenceEquals (String.Empty, ""))
18                         return 5;
19                 return 0;
20         }
21 }