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