mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
296 B
Swift
8 lines
296 B
Swift
// RUN: %target-swift-emit-silgen -enable-lexical-lifetimes=false -module-name borrow -parse-stdlib %s | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil {{.*}}[lexical_lifetimes] [ossa] @funky : {{.*}} {
|
|
// CHECK-LABEL: } // end sil function 'funky'
|
|
@_silgen_name("funky")
|
|
@_lexicalLifetimes func funky() {}
|
|
|