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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs1644-3.cs
blob
89e3ae19d0c98ed43abfdcf3bf0dafef6cb41f4a
1
// CS1644: Feature `fixed size buffers' cannot be used because it is not part of the C# 1.0 language specification
2
// Line: 6
3
// Compiler options: -langversion:ISO-1
4
5
struct
S
{
6
fixed long
buffer
[
5
];
7
}