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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0619-23.cs
blob
1d6f9a18e5a2657faa29c6f167cb13ced50658ec
1
// CS0619: `AA' is obsolete: `'
2
// Line: 13
3
4
[
System
.
Obsolete
(
""
,
true
)]
5
class
AA
6
{
7
public void
Foo
() {}
8
}
9
10
class
B
{
11
public
B
(
object
a
)
12
{
13
object
o
= ((
AA
)
a
);
14
}
15
}