66959d9dbf
R=fschneider@google.com, sgjesse@google.com Review URL: https://codereview.chromium.org//54663002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@29670 260f80e4-7a28-3924-810f-c04153c831b5
16 lines
560 B
Dart
16 lines
560 B
Dart
// Copyright (c) 2013, 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.
|
|
// SharedOptions=-Da=x -Db=- -Dc=0xg -Dd=+ -Dd=
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
main() {
|
|
Expect.isNull(const int.fromEnvironment('a'));
|
|
Expect.isNull(const int.fromEnvironment('b'));
|
|
Expect.isNull(const int.fromEnvironment('c'));
|
|
Expect.isNull(const int.fromEnvironment('d'));
|
|
Expect.isNull(const int.fromEnvironment('e'));
|
|
}
|
|
|