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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0208-9.cs
blob
1398a84767ca7f3351ad78745d8fab205525ca46
1
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Foo'
2
// Line: 7
3
// Compiler options: -t:library -unsafe
4
5
public unsafe struct
Foo
6
{
7
public
Foo
*
foo
;
8
string
x
;
9
}
10
11