for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0029-38.cs
blob6ee7146f4961215f613f2d27787a1658f8516708
1 // CS0029: Cannot implicitly convert type `int' to `(long, bool)'
2 // Line: 8
4 class C
6 static void Test ()
8 System.ValueTuple<long, bool> arg = 1;