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
remove NotWorking
[mcs.git]
/
tests
/
test-407.cs
blob
13d5d86ff5986dbd21cd66136c8038f11421c008
1
// Compiler options: -unsafe
2
3
struct
Obsolete
{
4
int
a
;
5
}
6
struct
A
{
7
int
a
,
b
;
8
}
9
10
class
MainClass
{
11
unsafe public static void
Main
()
12
{
13
System
.
Console
.
WriteLine
(
sizeof
(
Obsolete
));
14
}
15
}
16
17