2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-168.cs
blob328e299bf82770d18614253e0db1f2f54b20ad32
1 using System;
3 struct X {
4 static public implicit operator string (X x)
6 return "x";
11 class Test {
13 static public int Main ()
15 X x = new X ();
16 Console.WriteLine (x);
18 return 0;