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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0636.cs
blob
3b09bd7603c3ef3adbe02597faf70d2a6614aa69
1
// CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
2
// Line: 10
3
4
using
System
;
5
using
System
.
Runtime
.
InteropServices
;
6
7
namespace
CS0636
{
8
struct
GValue
{
9
public string
name
;
10
[
FieldOffset
(
4
) ]
public int value
;
11
}
12
13
class
Tests
{
14
public static void
Main
() {
15
}
16
}
17
}