[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-primary-ctor-03.cs
blob36df2c3ad406cb2cd2af9639d32a96486c64666b
1 // Compiler options: -langversion:experimental
2 class D(string arg) : Base (arg)
6 abstract class Base (object obj)
8 public string Prop { get; } = obj.ToString ();
11 class X
13 public static int Main ()
15 var d = new D ("test");
16 if (d.Prop != "test")
17 return 1;
19 return 0;