blob: e02ca9af64a74831e9e3e7c42de36a8ea1107b82 [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.
class C {
test() {
use(+super);
}
}
use(_) => null;
main() {
new C().test();
}