mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
26 lines
674 B
Swift
26 lines
674 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/has_generic_witness.swift
|
|
// RUN: llvm-bcanalyzer %t/has_generic_witness.swiftmodule | %FileCheck %s
|
|
// RUN: %target-swift-frontend -emit-ir -I %t %s -o /dev/null
|
|
|
|
// We have to perform IRGen to actually check that the generic substitutions
|
|
// are being used.
|
|
|
|
// CHECK-NOT: UnknownCode
|
|
|
|
import has_generic_witness
|
|
|
|
var cfoo : Fooable = FooClass()
|
|
var sfoo : Fooable = FooStruct()
|
|
|
|
func bar<B: Barrable>(_ b: B) {}
|
|
bar(BarClass())
|
|
bar(BarStruct())
|
|
|
|
var cbas : Bassable = BasClass()
|
|
var sbas : Bassable = BasStruct()
|
|
|
|
func cyc<C: CyclicAssociated>(_ c: C) {}
|
|
cyc(CyclicImpl())
|