a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
37 lines
355 B
C#
37 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using N2;
|
|
|
|
namespace N
|
|
{
|
|
static class S
|
|
{
|
|
internal static void Map<T>(this int i, Func<T, string> f)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace N2
|
|
{
|
|
static class S2
|
|
{
|
|
internal static void Map(this int i, int k)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace M
|
|
{
|
|
using N;
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
1.Map(2);
|
|
}
|
|
}
|
|
}
|