for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0012-20.cs
blob2747508190732f80dbd625cafc3790a3a659d2d6
1 // CS0012: The type `A1' is defined in an assembly that is not referenced. Consider adding a reference to assembly `CS0012-lib-missing, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'
2 // Line: 13
3 // Compiler options: -r:CS0012-lib.dll
5 using System.Threading.Tasks;
7 class Test
9 public static void Main ()
11 var b = new B ();
12 var t = Task.Factory.StartNew (() => {
13 b.Test ();
14 b.Test ();
15 });
17 b.Test ();