repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0637-2.cs
blob
bebaf25666b0f03844005b58b7c2cab5552b9949
1
// cs0637-2.cs: The FieldOffset attribute is not allowed on static or const fields
2
// Line: 10
3
4
using
System
;
5
using
System
.
Runtime
.
InteropServices
;
6
7
[
StructLayout
(
LayoutKind
.
Explicit
)]
8
struct
GValue
{
9
[
FieldOffset
(
4
)]
10
public const int value
=
3
;
11
}