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

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