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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1503-18.cs
blob
a9e93375674d9590f9baa584da8e356a79d95188
1
// CS1503: Argument `#1' cannot convert `int?' expression to type `int'
2
// Line: 11
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
string
x
=
null
;
9
string
y
=
null
;
10
11
var
res
=
x
?[
y
?.
Length
];
12
}
13
}