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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0029-18.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
}