[System.Net] Add support for .pac proxy config scripts on mac
[mono.git] / mcs / errors / cs8054-3.cs
1 // CS0573: `A.a': Structs without explicit constructors cannot contain members with initializers
2 // Line: 5
3
4 struct A {
5         int a = 1;
6 }