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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0029-8.cs
blob
92f2b0f382071813fd96c261896abefc5b3d8c21
1
// CS0029: Cannot implicitly convert type `T' to `int*'
2
// Line: 8
3
// Compiler options: -unsafe
4
5
class
T
6
{
7
static unsafe void
Main
()
8
{
9
int
*
a
=
default
(
T
);
10
}
11
}