close #3152; closed via f663ca7

This commit is contained in:
Zahary Karadjov
2017-06-10 23:23:49 +03:00
committed by Andreas Rumpf
parent 6f935598f4
commit b101a59734

View File

@@ -5,6 +5,7 @@ dynamic: var
static: const
static: literal
static: constant folding
static: static string
'''
"""
@@ -18,9 +19,12 @@ let l = "let"
let v = "var"
const c = "const"
type staticString = static[string]
foo(l)
foo(v)
foo(c)
foo("literal")
foo("constant" & " " & "folding")
foo(staticString("static string"))