blob: 5dce77378e9930b0e201d2bd3650a5473a812832 [file] [log] [blame]
// Copyright (c) 2015, 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.
// test w/ `pub run test -N avoid_as`
void main() {
var pm;
try {
(pm as Person).firstName = 'Seth'; //LINT [12:6]
} on CastError {} // ignore: avoid_catching_errors, empty_catches
Person person = pm;
person.firstName = 'Seth';
Person p = person as dynamic; //OK #195
}
class Person {
var firstName;
}