import "Prelude" // Test optimized special cases main = let a = "123" b = "456" c = "\(a)" d = "abc\(b)" e = "\(d)def" in "\(c)\(e)" -- 123abc456def