37 lines
883 B
C#
37 lines
883 B
C#
|
// Compiler options: -doc:xml-059.xml
|
||
|
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
// <see cref="int?" /> - this is invalid 1584/1658
|
||
|
// <see cref="List" />
|
||
|
/// <see cref="M:System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke2 ( )" />
|
||
|
/// <see cref="Bar" />
|
||
|
/// <see cref="ListBase(string)" />
|
||
|
/// <see cref="T:ListBase(string)" />
|
||
|
/// <see cref="T:ListBase<string)" /><!-- it somehow passes -->
|
||
|
/// <see cref="T:List!$%Base()" /><!-- it somehow passes -->
|
||
|
/// <see cref="T:$%!" />
|
||
|
/// <see cref=".:Bar" />
|
||
|
/// <see cref="T:List(int)" />
|
||
|
public class Foo
|
||
|
{
|
||
|
static void Main ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// hogehoge
|
||
|
public string Bar;
|
||
|
|
||
|
/// fugafuga
|
||
|
public void ListBase (string s)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// <see cref="System.Nullable<System.Int32>" /> - cs1658/1574
|
||
|
/// <see cref="T:System.Nullable<System.Int32>" />
|
||
|
/// <see cref="T:System.Nullable(System.Int32)" />
|
||
|
public class ListBase<T>
|
||
|
{
|
||
|
}
|