Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0188-10.cs
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 10
3
4 struct S
5 {
6         public int x;
7         
8         S (dynamic d)
9         {
10                 Foo (d);
11                 x = 44;
12         }
13
14         void Foo (int a)
15         {
16         }
17 }