blob: ba44a6f7f819000dddb7308397fc30e898d1c3a2 [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.
*/
library Inheritance_and_Overriding_A02_t04_lib;
class S {
_foo(var arg) { return 'A'; }
_bar([x]) {return "barx";}
get _g {return "super-g";}
}