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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
tests
/
gtest-autoproperty-16.cs
blob
6676261b5da69f236e8dee6ab492515733ba16aa
1
abstract class
A
2
{
3
public abstract int
Foo { get; }
4
}
5
6
class
B
:
A
7
{
8
public override int
Foo
=>
1
;
9
10
public static void
Main
()
11
{
12
}
13
}