repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0619-33.cs
blob
269b537fbebd8f26b961320eb3f18026de841f95
1
// cs0619-33.cs: `Error.Report(string)' is obsolete: `Obsolete method'
2
// Line: 11
3
// Compiler options: -reference:CS0619-33-lib.dll
4
5
using
System
;
6
7
class
MainClass
{
8
public static void
Main
()
9
{
10
Error e
=
new
Error
();
11
e
.
Report
(
"text"
);
12
}
13
}