Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1574-10.cs
1 // CS1574: XML comment on `C.MM()' has cref attribute `int(int)' that could not be resolved
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror
4
5 class C
6 {
7         /// <returns>A <see cref="int(int)" />.</returns>
8         void MM ()
9         {
10         }
11 }
12