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
Make csproj target work again
[mcs.git]
/
errors
/
cs0619-34.cs
blob
6f7eba33ae26a4ac34ee62d4e620a1fb9d2fc60d
1
// cs0619-34.cs: `Error' is obsolete: `Obsolete struct'
2
// Line: 17
3
4
using
System
;
5
6
[
Obsolete
(
"Obsolete struct"
,
true
)]
7
struct
Error
8
{
9
public static void
Report
(
bool
arg
)
10
{
11
}
12
}
13
14
class
MainClass
{
15
public static void
Main
()
16
{
17
Error
.
Report
(
false
);
18
}
19
}