Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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&lt;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&lt;System.Int32&gt;" /> - cs1658/1574
/// <see cref="T:System.Nullable&lt;System.Int32&gt;" />
/// <see cref="T:System.Nullable(System.Int32)" />
public class ListBase<T>
{
}