2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1580.cs
blobd9c2c6f912865751d6ad3db10645cb1f3167162d
1 // cs1580.cs: Invalid type for parameter `1' in XML comment cref attribute `Foo(x)'
2 // Line: 7
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
5 using System;
6 /// <seealso cref="Foo(x)"/>
7 public class Test
9 int Foo ()
11 return 0;