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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0029-34.cs
blob
6febb9a7cbced99f62dec9aef6f841a0f3822529
1
// CS0029: Cannot implicitly convert type `string' to `MyTypeImplicitOnly?'
2
// Line: 13
3
4
struct
MyTypeImplicitOnly
5
{
6
}
7
8
class
C
9
{
10
static void
Main
()
11
{
12
MyTypeImplicitOnly
?
mt
=
null
;
13
mt
=
null
+
mt
;
14
}
15
}