mirror of
https://github.com/apple/swift.git
synced 2026-03-04 18:24:35 +01:00
We don't currently support C++23 deducing this parameters. Until we do, let's not expose incorrect function signatures to Swift. rdar://161345481
32 lines
455 B
Plaintext
32 lines
455 B
Plaintext
module DeducingThis {
|
|
header "deducing-this.h"
|
|
requires cplusplus23
|
|
}
|
|
|
|
module Methods {
|
|
header "methods.h"
|
|
requires cplusplus
|
|
}
|
|
|
|
module AmbiguousMethods {
|
|
header "ambiguous_methods.h"
|
|
requires cplusplus
|
|
}
|
|
|
|
module UnsafeProjections {
|
|
header "unsafe-projections.h"
|
|
requires cplusplus
|
|
|
|
export *
|
|
}
|
|
|
|
module SRetWinARM64 {
|
|
header "sret-win-arm64.h"
|
|
requires cplusplus
|
|
}
|
|
|
|
module InRegSRet {
|
|
header "inreg-sret.h"
|
|
requires cplusplus
|
|
}
|