blob: ca3c9b54a3b4204e889dab9c8691ed20f3c94350 [file] [log] [blame]
// 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.
import 'package:analyzer/src/dart/error/ffi_code.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(NonSizedTypeArgument);
});
}
@reflectiveTest
class NonSizedTypeArgument extends PubPackageResolutionTest {
test_invalid_struct() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
@Array(8)
external Array<Void> a0;
}
''', [
error(FfiCode.NON_SIZED_TYPE_ARGUMENT, 74, 4),
]);
}
test_invalid_union() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
class C extends Union {
@Array(8)
external Array<Void> a0;
}
''', [
error(FfiCode.NON_SIZED_TYPE_ARGUMENT, 73, 4),
]);
}
test_valid() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
@Array(8)
external Array<Uint8> a0;
}
''');
}
}