blob: 675eb77b33b23e976a950d572bca0bb52fb030ac [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.
library instance_of_type;
class C {
static int s() => 0;
static int get sg => 10;
int m() => 1;
int get g => 20;
}