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
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
gtest-199.cs
blob
cbe8ee7cb48da64ad094b7e71a8ebb4d3c545428
1
// Compiler options: /unsafe
2
3
// similar code from #75772.
4
public class
Splay
<
T
>
5
{
6
unsafe private struct
Node
7
{
8
private int
*
foo
;
9
private
T data
;
10
}
11
}
12
13
class
Foo
14
{
15
public static void
Main
() {}
16
}
17