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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs0030-12.cs
blob
c2d6b6f07e98ef384fa0c58732f630692bb01896
1
// CS0030: Cannot convert type `X' to `S'
2
// Line: 10
3
4
struct
S
{
5
}
6
7
class
X
{
8
static void
Main
()
9
{
10
S s
= (
S
)
default
(
X
);
11
}
12
}