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

cs1574-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2187490351430549578529e869e24ba386993c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
using System;

/// <see cref="Goo"/> ... does not exist
public class Test
{
	string Foo {
		get { return null; }
	}
}

class X
{
	static void Main ()
	{ }
}