Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0619-42.cs
1 // CS0619: `Error.Filename' is obsolete: `NOT'
2 // Line: 8
3 // Compiler options: -reference:CS0619-42-lib.dll
4
5 class A: Error {
6         public A () {
7                 string s = Filename;
8         }
9         
10         public override string Filename {
11                 set {
12                 }
13         }
14 }