blob: 9bf6da10d7c70af0616e4f1b43b54cc9540e0ad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Compiler options: -langversion:default
namespace Foo
{
public class Hello
{
public static int World = 8;
}
}
namespace Bar
{
public class Hello
{
public static int World = 9;
}
}
namespace X
{
using Foo;
public partial class Test
{
public static int FooWorld ()
{
return Hello.World;
}
}
}
namespace X
{
using Bar;
public partial class Test
{
public static int BarWorld ()
{
return Hello.World;
}
}
}
class Y
{
public static int Main ()
{
if (X.Test.FooWorld () != 8)
return 1;
if (X.Test.BarWorld () != 9)
return 2;
return 0;
}
}
|