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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0619-22.cs
blob
05dc4fa044fb6f3202da99f024e30f9cbee4a38e
1
// cs0619-22.cs: `AA' is obsolete: `'
2
// Line: 12
3
4
[
System
.
Obsolete
(
""
,
true
)]
5
class
AA
6
{
7
}
8
9
class
B
{
10
public bool
Foo
(
object
b
)
11
{
12
return
b
is
AA
;
13
}
14
}