Tensegritics / ClojureDart

Clojure dialect for Flutter and Dart
1.44k stars 91 forks source link

Dynamic warning when using `abs` #326

Closed TiLogic closed 2 days ago

TiLogic commented 4 days ago

Describe the bug A clear and concise description of what the bug is. Calling abs throws DYNAMIC WARNING: can't resolve member abs on target type dynamic of library dart:core

Does your problem persist after clj -M:cljd clean && flutter clean?

Yes.

To Reproduce

(def a 11)

(abs a)

Expected behavior

No dynamic warning.

Additional context Warning not present when calling (abs 11).