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

test-447.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1fb616c68d1c52156d0baaafafa75a11b94212e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;

[assembly:CLSCompliant(true)]

namespace System {
	[AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
	internal sealed class MonoTODOAttribute : Attribute {

		string comment;
		
		public MonoTODOAttribute ()
		{
		}
	}

}

namespace System.Web
{
	public partial class HttpBrowserCapabilities {

		[MonoTODO] public Version A {
			get { throw new Exception (); }
		}
	}
}

class Test { public static void Main () { } }