Repro: extension.dart ```dart extension Ext on int {} ``` main.dart: ```dart /// This is a dart doc for [f] that uses an [Ext] type. void f<E extends Ext>() {} ``` Neither `Ext` will trigger the quick-fix for the importing of `extension.dart`. If you add a line `Ext;` inside `f` it does. I volunteer to help with this.