class Program { static void Main() { object o = new object(); int x = (o.); } }
Invoke smart completion after 'o.'. Result:
using Int32=System.Int32; class Program { static void Main() { object o = new object(); int x = (Int32); } }
Expected:
class Program { static void Main() { object o = new object(); int x = (o.GetHashCode()); } }