blob: 01bfe4a930fe9d34f7f375409ec5bac6c4712993 [file] [log] [blame]
// 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.js_interop) 'package:web_integration/d.dart'
as message2;
void main() {
if (message1.message == 'a' && message2.message == 'd') {
print('--- TEST SUCCEEDED ---');
} else {
print('--- TEST FAILED ---');
}
}