summaryrefslogtreecommitdiff
path: root/mcs/tests/test-partial-16.cs
blob: e05ccd43098c93418378ea1158b9cdb6097422ce (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
namespace A
{
	partial class C
	{
	}
}

namespace A
{
	using B;
	
	partial class C
	{
		public static bool f = C2.Test ();
		object o = new C2().Test_I ();
	}
}

namespace B
{
	partial class C2
	{
		public static bool Test ()
		{
			return false;
		}
		
		public object Test_I ()
		{
			return this;
		}
		
		public static void Main ()
		{
		}

	}
}