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
/
test-expression-bodied-02.cs
blob
f6b49766c01a61acf4ee3f86f858b76be5581cdc
1
using
System
.
Runtime
.
InteropServices
;
2
3
[
StructLayout
(
LayoutKind
.
Explicit
,
Size
=
8
)]
4
public struct
Cs0842ExpressionBodyGetterBug
5
{
6
[
FieldOffset
(
0
)]
7
public int
DummyVariable
;
8
9
public int
MyGetter
=>
5
;
10
}
11
12
class
C
13
{
14
public static void
Main
()
15
{
16
}
17
}