Files
swift-mirror/test/AutoDiff/ModuleInterface/differentiation.swift
Becca Royal-Gordon 1f008fb0d0 [ModuleInterface] Enable module selectors by default
And update tests to use them.

This commit depends on fixes in swiftlang/swift PRs #86905, #87129, and #87130.

Fixes rdar://169749886.
2026-02-20 00:35:23 -08:00

16 lines
758 B
Swift

// RUN: %target-swift-emit-module-interface(%t.swiftinterface) %s
// RUN: %target-swift-typecheck-module-from-interface(%t.swiftinterface)
// RUN: %FileCheck %s < %t.swiftinterface
import _Differentiation
public func a(f: @differentiable(reverse) (Float) -> Float) {}
// CHECK: public func a(f: @differentiable(reverse) (Swift::Float) -> Swift::Float)
// TODO: Remove once `@differentiable` becomes deprecated.
public func b(f: @differentiable(reverse) (Float) -> Float) {}
// CHECK: public func b(f: @differentiable(reverse) (Swift::Float) -> Swift::Float)
public func c(f: @differentiable(reverse) (Float, @noDerivative Float) -> Float) {}
// CHECK: public func c(f: @differentiable(reverse) (Swift::Float, @noDerivative Swift::Float) -> Swift::Float)