a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
345 B
C#
29 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
interface I
|
|
{
|
|
}
|
|
|
|
namespace Outer.Inner
|
|
{
|
|
class Test {
|
|
static void M (I list)
|
|
{
|
|
list.AddRange(new Test[0]);
|
|
}
|
|
|
|
public static void Main()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace Outer {
|
|
static class ExtensionMethods {
|
|
public static void AddRange<T>(this I list, IEnumerable<T> items)
|
|
{
|
|
}
|
|
}
|
|
}
|