a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
34 lines
316 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|