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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
test-893.cs
blob
97cfc0a7cca8583f8d2fe22644c1daf7d6bbbdb0
1
public class
A
2
{
3
public static bool
TryAssign
(
out int
x
)
4
{
5
x
=
0
;
6
return true
;
7
}
8
9
public static void
Main
()
10
{
11
int
x
,
y
;
12
if
((!
TryAssign
(
out
x
) ||
x
==
0
) & (!
TryAssign
(
out
y
) ||
y
==
0
)) {
13
}
14
}
15
}