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
resync
[mcs.git]
/
errors
/
cs0619-21.cs
blob
3dec96ca683f11ea86b4ffbee34115fbe03785f0
1
// cs0619-21.cs: `Obsolete' is obsolete: `'
2
// Line: 12
3
// Compiler options: -unsafe
4
5
[
System
.
Obsolete
(
""
,
true
)]
6
struct
Obsolete
{
7
}
8
9
class
MainClass
{
10
unsafe public static void
Main
()
11
{
12
System
.
Console
.
WriteLine
(
sizeof
(
Obsolete
));
13
}
14
}