// 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: } |