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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0208-13.cs
blob
305e6d03fdab114f4d521966e9c27cda36d5f8b0
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 class
Node
8
{
9
private
Node
*
parent
;
10
private
T data
;
11
}
12
}
13