blob: 1d76b9d7130af478ac758c4cfac7980f4f44eb7d [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(Object x) {
while (x is! String) {
x.length; //# 01: compile-time error
}
x.length;
}
void main() {}