Updated with review feedback.
[mono.git] / mcs / errors / cs1525-36.cs
1 // CS1525: Unexpected symbol `alse'
2 // Line: 8
3
4 using System;
5
6 class a
7 {
8         [MergablePropertyAttribute (f alse)]
9         public static int Prop {
10                 get; set;
11         }
12 }