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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-171.cs
blob
cd1202aecb761fdd69e38d7d566afab5947b7931
1
// Compiler options: -unsafe
2
3
//
4
// Checks for an implicit void * conversion during an
5
// explicit conversion
6
//
7
8
using
System
;
9
10
namespace
IntPtr_Conv
11
{
12
struct
FooStruct
{
13
int
x
;
14
}
15
16
class
Class1
{
17
18
public static int
Main
(
string
[]
args
)
19
{
20
IntPtr p
=
IntPtr
.
Zero
;
21
22
unsafe
{
23
FooStruct
*
s
= (
FooStruct
*) (
p
);
24
}
25
26
return
0
;
27
}
28
}
29
}