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: cc344865c9d546e80220d90c8501e87962155ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
// Invalid XML 'include' element; Missing 'file' attribute

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

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