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-initialize-11.cs
blob
249fa947d25670625a7a34b28f3099564ed4a152
1
using
System
;
2
3
namespace
InlineAssignmentTest
4
{
5
public class
Foo
6
{
7
public bool
B
=
true
;
8
}
9
10
public class
MainClass
11
{
12
public static int
Main
()
13
{
14
var
foo
=
new
Foo
()
{ B = false }
;
15
if
(
foo
.
B
!=
false
)
16
return
1
;
17
18
return
0
;
19
}
20
}
21
}