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

34 lines
316 B
C#

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)
{
}
}
}