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
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs0619-54.cs
blob
729a3ae006aee39ddec460b1f67397e298c39683
1
// CS0619: `A' is obsolete: `msg'
2
// Line: 21
3
4
using
System
;
5
6
[
Obsolete
(
"msg"
,
true
)]
7
class
A
8
{
9
public class
M
10
{
11
public static void
Foo
()
12
{
13
}
14
}
15
}
16
17
class
C
18
{
19
public static void
Main
()
20
{
21
A
.
M
.
Foo
();
22
}
23
}