repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0619-42.cs
blob
4e0dd8ac4cb8f5cf145e8f076b71de55c12ef59c
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
}