blob: b40fe7fda652df4058e31f52a4726078a34d6400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS1580: Invalid type for parameter `1' in XML comment cref attribute `Foo(x)'
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:1
using System;
/// <seealso cref="Foo(x)"/>
public class Test
{
int Foo ()
{
return 0;
}
}
|