repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use a 2.0 network stack for MONOTOUCH
[mcs.git]
/
errors
/
cs0208-3.cs
blob
bdc823642d7c14d15d7548af8428a8e44d25546e
1
// cs0208-3.cs: Cannot take the address of, get the size of, or declare a pointer to a managed type `Foo.P'
2
// Line: 18
3
// Compiler options: -unsafe
4
5
public unsafe class
Foo
6
{
7
public class
P
8
{
9
public
P
*
GetEnumerator
()
10
{
11
return null
;
12
}
13
}
14
15
public static void
Main
()
16
{
17
P o
=
new
P
();
18
foreach
(
P p
in
o
)
19
{
20
}
21
}
22
}