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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0208-2.cs
blob
be08c605a21151cd38f4ef66bd8ad297c325ed1d
1
// CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `CS208.Foo'
2
// Line: 20
3
// Compiler options: -unsafe
4
5
namespace
CS208
6
{
7
public class
Foo
8
{
9
}
10
11
public class
Bar
12
{
13
unsafe static void
Main
()
14
{
15
Foo f
=
new
Foo
();
16
Foo
*
s
= &
f
;
17
}
18
}
19
}