blob: 15f5566ae623b9a86c1fd5aba02c64d83ede7812 [file] [log] [blame]
// Copyright (c) 2019, 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(ExtraAnnotationOnStructFieldTest);
});
}
@reflectiveTest
class ExtraAnnotationOnStructFieldTest extends PubPackageResolutionTest {
test_one() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
@Int32()
external int x;
}
''');
}
test_two() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
@Int32()
@Int16()
external int x;
}
''', [
error(FfiCode.EXTRA_ANNOTATION_ON_STRUCT_FIELD, 57, 8),
]);
}
}