[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-initialize-03.cs
blob34b022094fbd1b7f80ba9b8ef87cc7751512b241
3 using System;
4 using System.Collections;
6 class Data
8 public int Value;
11 public class Test
13 static Data Prop {
14 set {
18 public object Foo ()
20 return new Data () { Value = 3 };
23 public static void Main ()
25 Prop = new Data () { Value = 3 };
26 Data data = new Data () { Value = 6 };
27 Data a, b;
28 a = b = new Data () { Value = 3 };