Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-168.cs
blobb96a60bb190d9e87d394edef0f05326f11739f41
1 using System;
3 struct X {
4 static public implicit operator string (X x)
6 return "x";
11 class Test {
13 public static int Main ()
15 X x = new X ();
16 Console.WriteLine (x);
18 return 0;