Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1587-28.cs
1 // CS1587: XML comment is not placed on a valid language element
2 // Line: 16
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:2
4
5 using System;
6
7 namespace TopNS
8 {
9         abstract class AFoo
10         {
11                 internal abstract int Prop { get; }
12         }
13
14         class Foo : AFoo
15         {
16                 sealed /** is "sealed" checked? */ internal override int Prop {
17                         get { return 0; }
18                 }
19         }
20 }