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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0208-16.cs
blob
212860fe601341d2a9b93038d1d17f9ac81dffdb
1
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Foo'
2
// Line: 11
3
// Compiler options: -unsafe
4
5
public unsafe partial struct
Foo
6
{
7
}
8
9
public unsafe partial struct
Foo
10
{
11
public
Foo
*
foo
;
12
string
x
;
13
}
14
15