blob: 7dd2f16c2c27a309320983d2243121b58d28fda5 [file] [log] [blame]
/*
* Copyright (c) 2020, 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 The static type of a throw e expression is Never.
*
* @description Checks that the static type of a throw e expression is Never.
* @author sgrekhov@unipro.ru
*/
// Requirements=nnbd-weak
import "../../../Utils/expect.dart";
main() {
Expect.throws(() {
Never n = throw new Exception("Test Never");
});
}