[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0171-6.cs
blob31730076f09832fcdd7c6d8bdf2006f6704974e3
1 // CS0171: Field `S.value' must be fully assigned before control leaves the constructor
2 // Line: 10
4 using System;
6 struct S
8 internal string value;
10 public S (int arg)
12 if (arg > 0) {
13 return;
16 throw new ApplicationException ();