DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / 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 { }