[mcs] Add codegen for null operator on result of awaited instance expression of prope...
[mono.git] / mcs / tests / gtest-431-lib-2.cs
1 // Compiler options: -t:library -noconfig -r:gtest-431-lib-1.dll
2
3 using System;
4
5 namespace Library {
6
7         public class Foo {
8         }
9
10         public static class Extensions {
11
12                 public static void Bar (this Foo self)
13                 {
14                         Console.WriteLine ("Bar");
15                 }
16         }
17 }