blob: 820996169d83bdfed2da5f91f0b8165e82942934 [file] [log] [blame]
// Copyright (c) 2019, 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 f() {
void g(Object x) {
if (x is String) {
x.length;
}
x = 42;
}
}
void main() {}