blob: 812d5852fc14bfa6300b09d2c6c88330394a4464 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion Execution of an if statement of the form if (b) s1 else s2
* proceeds as follows:
* First, the expression b is evaluated to an object o. Then, o is subjected to
* boolean conversion, producing an object r.
* @description Checks that it an AssertionError (see Boolean conversion)
* is thrown if the expression evaluates to null.
* @author kaigorodov
* @reviewer rodionov
*/
import '../../../Utils/expect.dart';
main() {
var i = null;
try {
if (i) {i = "hello";}
Expect.fail("AssertionError is expected");
} on AssertionError catch (e) {
// ok
}
}