TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1581-2.cs
blob8e165cfd1806e7c50138134858696aa7e9c8127e
1 // CS1581: Invalid return type in XML comment cref attribute `explicit operator int (Test)'
2 // Line: 7
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
5 using System;
6 /// <seealso cref="explicit operator int (Test)"/>
7 public class Test
9 /// operator.
10 public static explicit operator int [] (Test t)
12 return new int [0];