mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
b101a7d002
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548 Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Leaf Petersen <leafp@google.com>
28 lines
801 B
Dart
28 lines
801 B
Dart
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// @dart = 2.9
|
|
|
|
import "dart:ffi";
|
|
|
|
import "package:ffi/ffi.dart";
|
|
import 'package:expect/expect.dart';
|
|
|
|
class Struct8BytesInlineArrayInt extends Struct {
|
|
@Array(8)
|
|
Array<Uint8> a0;
|
|
}
|
|
|
|
void main() {
|
|
final pointer = calloc<Struct8BytesInlineArrayInt>();
|
|
final array = pointer.ref.a0;
|
|
try {
|
|
array[8]; // RangeError: Invalid value: Not in inclusive range 0..8: 8
|
|
} on RangeError catch (exception) {
|
|
final toString = exception.toString();
|
|
Expect.equals(
|
|
"RangeError: Invalid value: Not in inclusive range 0..7: 8", toString);
|
|
}
|
|
calloc.free(pointer);
|
|
}
|