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
tag rc1
[mcs.git]
/
errors
/
cs0619-52.cs
blob
037057ae5ed8b0c93f56ce1fa067a6645c6b6514
1
// CS0619: `C' is obsolete: `x'
2
// Line: 24
3
4
using
System
;
5
6
interface
I
7
{
8
}
9
10
[
Obsolete
(
"x"
,
true
)]
11
class
C
12
{
13
public void
Foo
()
{ }
14
}
15
16
class
M
17
{
18
public static void
Main
()
19
{
20
}
21
22
public void
Test
(
C c
)
23
{
24
c
.
Foo
();
25
}
26
}