summaryrefslogtreecommitdiff
path: root/mcs/errors/CS0619-42-lib.cs
blob: d8290dc8fda28fc2ac572829ab54a99bfc0d8c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

public class Error {
	[Obsolete ("NOT", true)]
	public virtual string Filename {
		set {
		}
		get {
			return "aa";
		}
	}
}