[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / test-671.cs
index f6b992f384ebb1a5bea510c9e84c1a165c093fa6..87395cdeb3e6c33033b6d8b3c24a9d86763feca0 100644 (file)
@@ -9,7 +9,7 @@ class C
 
        static bool Bar (object t)
        {
-               return Bar is object;
+               return t is object;
        }
 }