summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-3.cs
blob: 89e3ae19d0c98ed43abfdcf3bf0dafef6cb41f4a (plain)
1
2
3
4
5
6
7
// CS1644: Feature `fixed size buffers' cannot be used because it is not part of the C# 1.0 language specification
// Line: 6
// Compiler options: -langversion:ISO-1

struct S {
    fixed long buffer [5];
}