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

cs1590-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f93a0fba339b45483990df504e3e65e8679bb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// cs1590-3.cs: Invalid XML `include' element. Missing `file' attribute
// Line: 16
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// comment
   public class Test
   {
	/// comment
	public static void Main ()
	{
	}

	/// <include path='/foo/bar' />
	public void Bar (int x)
	{
	}
   }
}