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
add comment
[mcs.git]
/
tests
/
test-333.cs
blob
7b34eea0ea3a57085f7646c47dc4b2de2d50b5a8
1
// Compiler options: -warnaserror -warn:4
2
3
using
System
;
4
5
public class
Foo
6
{
7
[
Obsolete
]
8
public void
Something
()
9
{
10
}
11
}
12
13
public class
Bar
:
Foo
{
14
public new void
Something
()
15
{
16
}
17
18
public static void
Main
()
19
{
20
}
21
}