blob: 701278198906d867199a563fe48b40cadc8fbec2 [file] [log] [blame]
// Copyright (c) 2015, 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.
// @dart = 2.9
/// @assertion Static warnings are those errors reported by the static checker.
/// They have no effect on execution
/// @description Checks that static warning has no effect on execution
/// @author sgrekhov@unipro.ru
import '../../Utils/expect.dart';
class C {
C() { }
int foo() {
if (true) {
return 1;
} else {
return;
// ^
// [analyzer] unspecified
// [cfe] Must explicitly return a value from a non-void function.
}
}
}
main() {
new C().foo();
Expect.isTrue(true);
}