blob: 799b806ecdd0902ccb9e50c6a0a723fa992893d0 [file] [log] [blame]
// Copyright (c) 2018, 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.
void main() {
test();
}
// Testing that a block bodied function may not return non-void non-top values
void test() {
return 3;
// ^
// [analyzer] COMPILE_TIME_ERROR.RETURN_OF_INVALID_TYPE
// [cfe] Can't return a value from a void function.
}