dart-lang / sdk

The Dart SDK, including the VM, JS and Wasm compilers, analysis, core libraries, and more.
https://dart.dev
BSD 3-Clause "New" or "Revised" License
10.03k stars 1.54k forks source link

Inline function inlines body into "show" combinator #28253

Open scheglov opened 7 years ago

srawlins commented 2 years ago

Do you have a repro?

scheglov commented 2 years ago
import 'test2.dart' show f;

void g() {
  f();
}
void f() {
  print(42);
}

Try to inline f.