2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-680.cs
blob946c0f873295e5151171405df967f99719cd25a5
1 using System;
3 namespace AsStringProblem
5 class MainClass
7 public static void Main ()
9 object o = "Hello World";
10 Console.WriteLine (o as string + "blah");
11 Console.WriteLine (o is string + "blah");
12 Console.WriteLine ((o as string) + "blah");
13 Console.WriteLine ("blah" + o as string);