Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-486.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main ()
6         {
7                 string[] aPath = {"a","b"};
8                 char c = '.';
9                 if (c.ToString () != ".")
10                         throw new Exception ("c.ToString () is not \".\"");
11                 string erg = "";
12                 erg += String.Join (c.ToString (), aPath);
13                 if (erg != "a.b")
14                         throw new Exception ("erg is " + erg);
15         }
16 }