blob: 825acca8f76f81bffa8aaa18e89d03732dc6bdca [file] [log] [blame]
// 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.
void test() {
dynamic a = 5;
var b = a.toString();
b = 42;
}
void main() {}