Skip to content

Instantly share code, notes, and snippets.

@frenchy64
Created May 15, 2015 01:58
Show Gist options
  • Save frenchy64/6e6c8488f198a116b6f5 to your computer and use it in GitHub Desktop.
Save frenchy64/6e6c8488f198a116b6f5 to your computer and use it in GitHub Desktop.
(ns typed
{:core.typed true
:import-untyped
{u/a String}}
(:require [clojure.core.typed :as t]
[untyped :as u]))
(ann f [-> String])
(defn f []
(.toUpperCase u/a))
(ns untyped)
(def ^String a nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment