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

34 lines
316 B
C#
Raw Permalink Normal View History

using System;
using External;
interface I
{
}
namespace Outer.Inner
{
class Test {
static void M (I list)
{
list.AddRange();
}
public static void Main()
{
}
}
}
namespace Outer
{
}
namespace External
{
static class ExtensionMethods {
public static void AddRange (this I list)
{
}
}
}