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

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

namespace TopNS
{
	class Foo
	{
		public /** invalid comment in property decl */ int prop {
			get { return 0; }
		}
	}
}