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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0208.cs
blob
50b9e6f8ad44f401f7c0e78eba28b259888767e0
1
// cs0208.cs: 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
public int
Add
(
int
a
,
int
b
)
10
{
11
return
a
+
b
;
12
}
13
}
14
15
public class
Bar
16
{
17
unsafe static void
Main
()
18
{
19
Foo f
=
new
Foo
();
20
void
*
s
= &
f
;
21
}
22
}
23
}