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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0619-33.cs
blob
4171c998e93c993792c311099721fc2a85538fdf
1
// CS0619-33: `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
}