2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-exmethod-28.cs
blob00dd1e565ed0bc662a1ad96541fec10989f8678f
1 using System;
3 class Foo { }
5 static partial class Extensions
7 public static bool IsFoo (this Foo self)
9 return true;
13 class Bar { }
15 partial class Extensions
17 public static bool IsBar (this Bar self)
19 return true;
23 class Program
25 static void Main ()