linux-packaging-mono/mcs/tests/gtest-exmethod-34.cs

15 lines
179 B
C#
Raw Normal View History

// Compiler options: -warnaserror
public static class Program
{
static void Foo (this object o)
{
}
public static void Main ()
{
const object o = null;
o.Foo ();
}
}