Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / gtest-exmethod-09.cs
1
2
3 static class Test
4 {
5         public static void Foo<T> (this string p1)
6         {
7         }
8 }
9
10 class C
11 {
12         public static void Main ()
13         {
14                 //int x = Test.Foo<bool> ("bb");
15                 "a".Foo<bool> ();
16         }
17 }