fix diagnostics in the FFI sample

Change-Id: I9697c33be3ee1c96c43d382c0925641d91878218
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/333560
Auto-Submit: Jake Macdonald <jakemac@google.com>
Commit-Queue: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
This commit is contained in:
Jake Macdonald 2023-11-02 16:09:58 +00:00 committed by Commit Queue
parent e16bb210d2
commit 3f1e15ab34
2 changed files with 2 additions and 4 deletions

View file

@ -3,7 +3,7 @@ version: 0.0.1
publish_to: none
environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.1.0 <4.0.0'
dependencies:
ffi: ^2.1.0

View file

@ -3,12 +3,10 @@
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'dart:io';
import 'package:ffi/ffi.dart';
import 'package:test/test.dart';
import '../lib/http.dart';
import 'package:http/http.dart';
Future<void> main() async {
test('httpGet', () async {