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

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

/// <see cref="Test.Foo(int)"/> Test has Foo, but is property that has no args.
public class Test
{
	string Foo {
		get { return null; }
	}
}