blob: 1311a0620b9da50763e11c9ea5c9866903bcb39f [file] [log] [blame]
// Copyright (c) 2011, 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.
class SomeClassImpl implements SomeClass {
String message_;
SomeClassImpl(arg) : this.message_ = "what?!" { }
String get message { return message_; }
}