Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-597.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87b04dde62c7533373d1c5108e7041fd5c691750 (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
namespace TestNS
{
	public interface IHoge {}

	public class Foo {}

	public class XElement : Element
	{
		public new Bar Document { get { return null; } }

		public object CrashHere {
			get { return (Document.Root == this) ? null : ""; }
		}
	}

	public class Element
	{
		public Foo Document { get { return null; } }
	}

	public class Bar
	{
		public IHoge Root { get { return null; } }
	}
	
	public class C 
	{
		public static void Main ()
		{
		}
	}
}