linux-packaging-mono/mcs/tests/gtest-exmethod-28.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

29 lines
290 B
C#

using System;
class Foo { }
static partial class Extensions
{
public static bool IsFoo (this Foo self)
{
return true;
}
}
class Bar { }
partial class Extensions
{
public static bool IsBar (this Bar self)
{
return true;
}
}
class Program
{
public static void Main ()
{
}
}