blob: 58562812bb5fcdb1e2a0c263ec7357c247bf6b41 [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.
sources: |
class A<T> {}
T id<T>(T x) => x;
type_definitions: ["T"]
position: "#A"
expression: |
() {
T? k = null;
k = id(k);
}