[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1591-19.cs
1 // CS1591: Missing XML comment for publicly visible type or member `EntryPoint.Create(bool)'
2 // Line: 6
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4 /// <summary>test</summary>
5 public class EntryPoint {
6         protected void Create (bool test) {
7         }
8
9         protected void Remove () {
10         }
11 }