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: f1fc491ab51d2511b9e43aba800799c6d976c09c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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;
   }
}