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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0019-11.cs
blob
8dd9e933dec2c40a388635e2d1108949a978f326
1
// CS0019: Operator `+' cannot be applied to operands of type `null' and `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
}