In this code the forwarding constructor in Application is constant (because the corresponding constructor in Base is constant) but analyzer reports that "The constructor being called isn't a const constructor."
import "package:expect/expect.dart";
abstract class Mixin {}
class Base {
final int x;
const Base(this.x);
}
class Application = Base with Mixin;
main() {
Expect.equals(42, const Application(42).x); // Error reported here.
}