Tensegritics / ClojureDart

Clojure dialect for Flutter and Dart
1.38k stars 88 forks source link

Type hinting a `Future` fn won't compile #304

Closed dupuchba closed 3 months ago

dupuchba commented 3 months ago
(defn ^Future futal [] (Future.value 42))

(defn present [] (await (futal)))

-> won't compile