6ccdffdb35
Prior tof4379435dd, using a type variable in an expression used for expression compilation, where the type variable came from a class that was loaded from dill would fail because type variables wasn't set up so the type variable didn't exist in scope. This adds a test for it - the actual fix was landed inf4379435dd. Change-Id: Icccf796b96853ece5ea96d4f29d76bb92b59fc83 Reviewed-on: https://dart-review.googlesource.com/c/92564 Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Peter von der Ahé <ahe@google.com>
11 lines
282 B
Dart
11 lines
282 B
Dart
// Copyright (c) 2019, 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 main_2;
|
|
|
|
import 'main.dart' as m;
|
|
|
|
main() {
|
|
m.main();
|
|
} |