updating to the latest module.
[mono.git] / mcs / errors / cs0657-13.cs
1 // cs0657.cs : 'type' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'property'
2 // Line: 13
3
4 using System;
5
6 [AttributeUsage(AttributeTargets.All)]
7 public class TestAttribute: Attribute
8 {
9 }
10
11 class C
12 {
13     [type:Test]
14     int Prop {
15         set {
16         }
17     }
18 }