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

test-470.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dc30703d7c6369a56965d9c97c92f244cc15680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// This code must be compilable without any warning
// Compiler options: -warnaserror -warn:4

class X
{
	public string ASTNodeTypeName
	{
		get 
		{ 
			return typeof(int).FullName;; 
		}
	}
}

class Demo {
	public static void Main ()
	{
	}
}