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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0637-2.cs
blob
6415d0b01837b8cefb65a5d70feaf175bda1da52
1
// CS0637: 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
}