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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs9030.cs
blob
8824aa2c35ce704c8a59a41f2165e2bd719020ef
1
// CS9030: The left-hand side of an assignment cannot contain a null propagating operator
2
// Line: 11
3
4
using
System
;
5
6
class
MainClass
7
{
8
public static void
Main
()
9
{
10
System
.
AppDomain a
=
null
;
11
a
?.
AssemblyLoad
+= (
sender
,
args
) =>
Console
.
Write
(
args
);
12
}
13
}