blob: 62850191c46b47a0656f5f8688f88bb1f6f85924 [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) {
if (x is String) {
x.length; //# 01: ok
} else {
x.length; //# 02: compile-time error
}
x.length; //# 03: compile-time error
}
void main() {}