Files
sdk/tests/language_2/issue34514_test.dart
T
Paul Berry 99daccc0dd Handle FunctionExpressionInvocation when creating summaries.
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>
2018-09-26 21:23:18 +00:00

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`
}