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-633.cs
blob
32882ba23e84cab53b05edbb47d7eca06032e721
1
using
System
;
2
3
struct
BB
4
{}
5
6
public class
X
7
{
8
public static void
Main
()
9
{
10
// Reduced expression statements
11
12
new
BB
? ();
13
new float
();
14
15
Action a
= () =>
new float
();
16
a
();
17
}
18
}