blob: 38d3fbdebe6c2028fb5a6279db926f91c27768e5 [file] [log] [blame] [edit]
// REQUIRES: system-darwin
// RUN: %lldb --repl < %s | FileCheck %s
import Foundation
let x : [URL] = [URL(string: "https://github.com")!, URL(string: "https://apple.com")!]
// CHECK: {{x}}: [URL] = 2 values {
// CHECK-NEXT: [0] = "https://github.com"
// CHECK-NEXT: [1] = "https://apple.com"
// CHECK-NEXT: }