Fixed issue in test.

This commit is contained in:
Daniel Rosenwasser
2015-10-02 16:30:22 -07:00
parent 315b06dc99
commit 4b736da231

View File

@@ -4,7 +4,7 @@
let [hello, brave, newish, world] = ["Hello", "Brave", "New", "World"];
type RexOrRaptor = "t-rex" | "raptor"
let [im, a, dinosaur]: ["I'm", "a", Dinosaur] = ['I\'m', 'a', 't-rex'];
let [im, a, dinosaur]: ["I'm", "a", RexOrRaptor] = ['I\'m', 'a', 't-rex'];
rawr(dinosaur);