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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0619-25.cs
blob
334c2816f2ef849163845762d244b5b7356564ea
1
// CS0619: `A' is obsolete: `'
2
// Line: 9
3
4
[
System
.
Obsolete
(
""
,
true
)]
5
class
A
6
{
7
}
8
9
class
AA
10
{
11
public
AA
()
12
{
13
foreach
(
A aa
in new
System
.
Collections
.
ArrayList
()) {
14
System
.
Console
.
WriteLine
(
aa
);
15
}
16
}
17
}