repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0030-2.cs
blob
1031bb8312a068ac262fc904d11737ab46d74b9c
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
}