mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
17 lines
549 B
Dart
17 lines
549 B
Dart
// Copyright 2014 The Flutter Authors. 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:web_integration/a.dart'
|
|
if (dart.library.io) 'package:web_integration/b.dart' as message1;
|
|
import 'package:web_integration/c.dart'
|
|
if (dart.library.html) 'package:web_integration/d.dart' as message2;
|
|
|
|
void main() {
|
|
if (message1.message == 'a' && message2.message == 'd') {
|
|
print('--- TEST SUCCEEDED ---');
|
|
} else {
|
|
print('--- TEST FAILED ---');
|
|
}
|
|
}
|