- Implemented InvokeGotFocus() method
[mono.git] / mcs / errors / cs1581.cs
1 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
2 using System;
3 /// <seealso cref="explicit operator intp (Test)"/>
4 public class Test
5 {
6         /// operator.
7         public static explicit operator int (Test t)
8         {
9                 return 0;
10         }
11 }
12