99daccc0dd
Fixes #34514. Change-Id: I46544a0a188b4cc0cb8061669ccbb0f7fa394995 Reviewed-on: https://dart-review.googlesource.com/76741 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
11 lines
363 B
Dart
11 lines
363 B
Dart
// 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.
|
|
|
|
// Inferred type should be `int`
|
|
var x = (() => 1)();
|
|
|
|
main() {
|
|
/*@compile-error=unspecified*/ x = 'bad'; // `String` not assignable to `int`
|
|
}
|