DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs1031.cs
12345678910111213
// CS1031: Type expected // Line: 8 using System; class M { public static void Main () { Type t = typeof (this); } }