mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
331 B
Swift
9 lines
331 B
Swift
// RUN: %target-swift-frontend -g -emit-ir %s | %FileCheck %s --check-prefix=CHECK-%target-ptrsize --check-prefix=CHECK
|
|
|
|
// Test that we don't generate debug info for hidden global variables.
|
|
|
|
// CHECK: @"$s4main2E1OWV" ={{.*}} constant
|
|
// CHECK-NOT: !DIGlobalVariable
|
|
public enum E1 { case E }
|
|
public func f() -> E1 { return .E }
|