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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
gtest-471.cs
blob
31374b26d0d6acba5d54541e576995e2dbe401c1
1
class
Q
2
{
3
static void
bar
<
T
> (
out
T t
)
where T
:
struct
4
{
5
t
=
true
?
new
T
() :
new
T
();
6
}
7
8
public static int
Main
()
9
{
10
int
d
=
0
;
11
bar
(
out
d
);
12
return
0
;
13
}
14
}