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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0612-2.cs
blob
51dcf086845a1db49a5206962d4e4552c216b785
1
// CS0612: `Foo.Bar' is obsolete
2
// Line: 8
3
// Compiler options: -r:CS0612-2-lib.dll -warnaserror
4
5
public class
Bar
{
6
public static int
Main
()
7
{
8
Foo foo
=
new
Foo
();
9
return
foo
.
Bar
;
10
}
11
}