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
/
cs0242-2.cs
blob
e865cc1f1de1b890a432950505aaec5b2baa9253
1
// CS0242: The operation in question is undefined on void pointers
2
// Line: 10
3
// Compiler options: -unsafe
4
5
unsafe class
C
6
{
7
public static void
Main
()
8
{
9
void
*
v
=
null
;
10
int
b
= *
v
is string
;
11
}
12
}