@@ -0,0 +1,10 @@
+abstract A(Int) from Int {
+ public function addFloat(f:Float):Float return this + f;
+}
+
+class Main {
+ static function main() {
+ var a:A = 1;
+ a.addFloat(
+ }
@@ -0,0 +1 @@
+--display Main.hx@173
@@ -0,0 +1,4 @@
+<type>
+f : Float -> Float
+</type>