Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1574-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9b758ed59e07d9dd5e5891a09ef9c330c8dfd8f (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1574-4.cs: XML comment on `Test' has cref attribute `System.Xml.XmlDocument' that could not be resolved
// Line: 9
// Compiler options: -doc:dummy.xml -warnaserror -noconfig

using System;

/// <seealso cref="System.Xml.XmlDocument"/>
/// with /noconfig, it cannot be resolved.
public class Test
{
}