blob: f98d0952892bf9fda2160d64d9b1aeb173a73a8f [file] [log] [blame]
// Copyright (c) 2018, 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 A {
/*element: A.instanceMethod:deps=[local]*/
instanceMethod<T>(t) => t;
}
main() {
local<T>(t) {
var a = new A();
a.instanceMethod<T>(t);
}
local<int>(0);
}