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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0029-29.cs
blob
fcb4e8977c6ff9c289e5827368f953555ad5d305
1
// CS0019: Cannot implicitly convert type `dynamic' to `int*'
2
// Line: 10
3
// Compiler options: -unsafe
4
5
public unsafe class
C
6
{
7
public static void
Main
()
8
{
9
dynamic
d
=
1
;
10
int
*
i
=
d
;
11
}
12
}