// RUN: %empty-directory(%t) // RUN: %target-swift-emit-module-interface(%t.swiftinterface) %s -module-name ValueGeneric -disable-availability-checking // RUN: %target-swift-typecheck-module-from-interface(%t.swiftinterface) -module-name ValueGeneric -disable-availability-checking // RUN: %FileCheck %s < %t.swiftinterface // CHECK: public struct Slab public struct Slab { // CHECK-LABEL: public var count: Swift.Int { // CHECK-NEXT: get { // CHECK-NEXT: N // CHECK-NEXT: } // CHECK-NEXT: } @inlinable public var count: Int { N } } // CHECK: public func usesGenericSlab(_: ValueGeneric.Slab) public func usesGenericSlab(_: Slab) {} // CHECK: public func usesConcreteSlab(_: ValueGeneric.Slab) public func usesConcreteSlab(_: Slab) {} // CHECK: public func usesNegativeSlab(_: ValueGeneric.Slab) public func usesNegativeSlab(_: Slab) {}