mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
323 B
Swift
8 lines
323 B
Swift
// Constant globals referencing other constant globals in their initializer expressions
|
|
// REQUIRES: swift_feature_CompileTimeValues
|
|
// RUN: %target-swift-frontend -emit-ir -primary-file %s -parse-as-library -enable-experimental-feature CompileTimeValues
|
|
|
|
@const let a: Int = 42
|
|
@const let b: Int = a
|
|
@const let c: Int = b
|