mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[embedded] Specialize superclasses in VTableSpecializer as part of MandatoryPerformanceOptimizations
This commit is contained in:
31
test/embedded/generic-classes2.swift
Normal file
31
test/embedded/generic-classes2.swift
Normal file
@@ -0,0 +1,31 @@
|
||||
// RUN: %target-run-simple-swift(-enable-experimental-feature Embedded -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
|
||||
// RUN: %target-run-simple-swift(-Osize -enable-experimental-feature Embedded -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
|
||||
|
||||
// REQUIRES: swift_in_compiler
|
||||
// REQUIRES: executable_test
|
||||
// REQUIRES: optimized_stdlib
|
||||
// REQUIRES: OS=macosx || OS=linux-gnu
|
||||
|
||||
class B<T> {
|
||||
}
|
||||
|
||||
class D<T>: B<T> {
|
||||
}
|
||||
|
||||
func callee<T>(_ t: T.Type) {
|
||||
_ = D<T>()
|
||||
}
|
||||
|
||||
public func test() {
|
||||
callee(Int.self)
|
||||
}
|
||||
|
||||
@main
|
||||
struct Main {
|
||||
static func main() {
|
||||
test()
|
||||
print("OK!")
|
||||
}
|
||||
}
|
||||
|
||||
// CHECK: OK!
|
||||
Reference in New Issue
Block a user