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-autoproperty-21.cs
blob
4a900c8ca90548de70824ba637f4d80ec37a8ac4
1
// Compiler options: -r:gtest-autoproperty-21-lib.dll
2
3
public class
Subclass
:
Base
4
{
5
public override string
Value { get; }
6
7
public
Subclass
()
8
{
9
Value
=
"test"
;
10
}
11
12
public static void
Main
()
13
{
14
new
Subclass
();
15
}
16
}