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
/
cs0266-21.cs
blob
d1bda2e31fbbd025b86fc7ff8c71fc50416ad18d
1
// CS0266: Cannot implicitly convert type `I' to `C'. An explicit conversion exists (are you missing a cast?)
2
// Line: 16
3
4
interface
I
5
{
6
}
7
8
struct
C
:
I
9
{
10
}
11
12
class
X
13
{
14
static void
Main
(
string
[]
args
)
15
{
16
C c
=
default
(
I
);
17
}
18
}