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
In class/Microsoft.Build.Tasks/Microsoft.Build.Tasks:
[mcs.git]
/
tests
/
gtest-417.cs
blob
289e7002dab949ace5c71eab52cb4147cc7f6a66
1
// Compiler options: -unsafe
2
3
public unsafe struct
B
{
4
private fixed int
a
[
5
];
5
}
6
7
public unsafe class
C
{
8
private
B x
;
9
10
public void
Goo
() {
11
fixed
(
B
*
y
=&
x
) {
12
}
13
}
14
15
public static void
Main
() {}
16
}