DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs0029-5.cs
123456789101112
// CS0029: Cannot implicitly convert type `T' to `int' // Line: 4 class X { static void Main() { int a = new T (); } } struct T { }