blob: 0a01a85fce8c0f14f9d29356b6e1f5a7a8fdef61 [file] [log] [blame]
// Copyright (c) 2016, 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/ `dart test -N avoid_return_types_on_setters`
set speed(int ms) {} //OK
void set speed2(int ms) {} //LINT
class Car {
static set make(String name) {} // OK
static void set model(String name) {} //LINT
set speed(int ms) {} //OK
void set speed2(int ms) {} //LINT
}