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
/
gtest-388.cs
blob
a46e877ddc538a36e71db2678ca6b02fa1ac1126
1
using
System
;
2
3
class
Data
{
4
public int
Value
;
5
}
6
7
class
Foo
{
8
static void
f
(
Data d
)
9
{
10
if
(
d
.
Value
!=
5
)
11
throw new
Exception
();
12
}
13
14
public static void
Main
()
15
{
16
Data d
;
17
f
(
d
=
new
Data
()
{ Value = 5 }
);
18
}
19
}