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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0037.cs
blob
988137b5c0060525a8b6b4cf6eac4eae8a3aeffd
1
// CS0037: Cannot convert null to `S' because it is a value type
2
// Line: 10
3
struct
S
{
4
int
a
;
5
}
6
7
class
X
{
8
static void
Main
()
9
{
10
S s
= (
S
)
null
;
11
}
12
}