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

cs1591-19.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc72efac35d48c859e19ffbe322346cee855a63e (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1591-19.cs: Missing XML comment for publicly visible type or member `EntryPoint.Create(bool)'
// Line: 6
// Compiler options: -doc:dummy.xml -warnaserror -warn:4
/// <summary>test</summary>
public class EntryPoint {
	protected void Create (bool test) {
	}

	protected void Remove () {
	}
}