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
tag rc1
[mcs.git]
/
errors
/
gcs0133-2.cs
blob
40567aafcd5ad239d8af570c642974657cc7503d
1
// cs0133-2.cs: The expression being assigned to `S.pathName' must be constant
2
// Line: 12
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
public static int
i
=
4
;
8
}
9
10
public unsafe struct
S
11
{
12
private fixed char
pathName
[
C
.
i
];
13
}