mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
273 B
Swift
8 lines
273 B
Swift
// RUN: %target-swift-emit-silgen %s | %FileCheck %s
|
|
|
|
class ConsumingClass {
|
|
__consuming func consumingMethod() {}
|
|
}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s21value_ownership_class14ConsumingClassC15consumingMethodyyF : $@convention(method) (@owned ConsumingClass) -> () {
|