Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs1581.cs
1 // CS1581: Invalid return type in XML comment cref attribute `explicit operator intp (Test)'
2 // Line: 7
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System;
6 /// <seealso cref="explicit operator intp (Test)"/>
7 public class Test
8 {
9         /// operator.
10         public static explicit operator int (Test t)
11         {
12                 return 0;
13         }
14 }
15