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