Merged into single file, added assertions
[mono.git] / mcs / tests / gtest-exmethod-28.cs
1 using System;
2
3 class Foo { }
4
5 static partial class Extensions
6 {
7         public static bool IsFoo (this Foo self)
8         {
9                 return true;
10         }
11 }
12
13 class Bar { }
14
15 partial class Extensions
16 {
17         public static bool IsBar (this Bar self)
18         {
19                 return true;
20         }
21 }
22
23 class Program
24 {
25         static void Main ()
26         {
27         }
28 }