New test.
[mono.git] / mcs / tests / test-447.cs
1 using System;
2
3 [assembly:CLSCompliant(true)]
4
5 namespace System {
6         [AttributeUsage (AttributeTargets.All, AllowMultiple=true)]
7         internal sealed class MonoTODOAttribute : Attribute {
8
9                 string comment;
10                 
11                 public MonoTODOAttribute ()
12                 {
13                 }
14         }
15
16 }
17
18 namespace System.Web
19 {
20         public partial class HttpBrowserCapabilities {
21
22                 [MonoTODO] public Version A {
23                         get { throw new Exception (); }
24                 }
25         }
26 }
27
28 class Test { static void Main () { } }