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
/
cs0029-24.cs
blob
4cd79a453e8d32525cc9a3efeb1a39c01336693a
1
// CS0029: Cannot implicitly convert type `T' to `int*'
2
// Line : 8
3
// Compiler options: -unsafe
4
5
class
T
{
6
static unsafe int
Main
()
7
{
8
int
*
a
=
default
(
T
);
9
}
10
}