summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-36.cs
blob: 0d5470b5e0be2edbaadb674d286dc2a70da1164b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1525: Unexpected symbol `alse'
// Line: 8

using System;

class a
{
	[MergablePropertyAttribute (f alse)]
	public static int Prop {
		get; set;
	}
}