mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
It was only used in a few tests. Those tests now use -emit-sil instead of -emit-silgen, with some functions marked @_transparent and a few CHECK: lines changed now that the mandatory optimizations get to run.
9 lines
315 B
Swift
9 lines
315 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend %S/Inputs/duplicate_normalprotocolconformance_input.swift -o %t/Swift.swiftmodule -emit-module -parse-stdlib -parse-as-library -module-link-name swiftCore -module-name Swift
|
|
// RUN: %target-swift-frontend -c %s -I %t -o %t/out
|
|
|
|
import Swift
|
|
|
|
var s = S()
|
|
|