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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-625.cs
blob
d733a809dc92a14e5dfe9e32889545f6644b11f5
1
struct
S
2
{
3
public static bool operator true
(
S
?
S
)
4
{
5
return true
;
6
}
7
8
public static bool operator false
(
S
?
S
)
9
{
10
return true
;
11
}
12
}
13
14
class
P
15
{
16
static void
Main
()
17
{
18
if
(
new
S
? ()) {
19
}
20
}
21
}