for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0131-6.cs
blob8af3e939fbfea4d4f2661bdd8136396fc88d1031
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 8
4 class X
6 void Test ()
8 Foo () = 1;
11 static int Foo ()
13 return 1;