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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0029-6.cs
blob
aaeca67ac89c621b854e362afeccdbaa8544cb45
1
// CS0029: Cannot implicitly convert type `T' to `int*'
2
// Line : 8
3
// Compiler options: -unsafe
4
5
class
T
{
6
static unsafe void
Main
()
7
{
8
int
*
a
= (
T
)
null
;
9
}
10
}