mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Applied the upgrade script from r236120 (LLVM) and r236121 (CFE). This is the final step of rdar://problem/20434113. Swift SVN r27925
6 lines
315 B
Swift
6 lines
315 B
Swift
// RUN: %target-swift-frontend -primary-file %s -emit-ir -g -o - | FileCheck %s
|
|
// Don't emit a line number for tuple types. They are unnamed
|
|
// and have no declaration, so the line number is nonsensical.
|
|
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "_TtTSiSf_"
|
|
let tuple : (Int, Float) = (1, 2.89)
|