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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0208.cs
blob
1c5e807bcc79f5f3832c058cd2654db30aafc4fd
1
// gcs0208.cs: Cannot take the address of, get the size of, or declare a pointer to a managed type `X<A>'
2
// Line: 12
3
// Compiler options: -unsafe
4
5
class
X
<
Y
> {
6
}
7
8
unsafe class
A
{
9
10
static void
Main
()
11
{
12
int
size
=
sizeof
(
X
<
A
>);
13
}
14
}