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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0208-11.cs
blob
b5b95bc1e80f48519d0ec3897c904a7948f38333
1
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Splay<T>.Node'
2
// Line: 9
3
// Compiler options: /unsafe
4
5
public class
Splay
<
T
>
6
{
7
unsafe private struct
Node
8
{
9
private
Node
*
parent
;
10
private
T data
;
11
}
12
}
13