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

cs1589.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abc783f99b24d7b9f35dac0f2ff8447252879039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS1589: Unable to include XML fragment `/root/@attr' of file `cs1589.inc'. The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type
// Line: 15
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// <include file='cs1589.inc' path='/foo' />
   public class Test
   {
	public static void Main ()
	{
	}

	/// <include file='cs1589.inc' path='/root/@attr'/>
	public string S3;
   }
}