mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
20 lines
1012 B
Swift
20 lines
1012 B
Swift
// REQUIRES: no_asan
|
|
// UNSUPPORTED: OS=linux-android, OS=linux-androideabi, OS=wasip1
|
|
// RUN: %empty-directory(%t)
|
|
import _Differentiation
|
|
|
|
// Missing the field on FreeBSD (rdar://173266760)
|
|
// XFAIL: OS=freebsd
|
|
|
|
// RUN: %target-build-swift -Xfrontend -enable-anonymous-context-mangled-names %S/Inputs/AutoDiffTypes.swift -parse-as-library -emit-module -emit-library -module-name TypesToReflect -o %t/%target-library-name(TypesToReflect)
|
|
// RUN: %target-build-swift -Xfrontend -enable-anonymous-context-mangled-names %S/Inputs/AutoDiffTypes.swift %S/Inputs/main.swift -emit-module -emit-executable -module-name TypesToReflect -o %t/TypesToReflect
|
|
|
|
// RUN: %target-swift-reflection-dump %t/%target-library-name(TypesToReflect) | %FileCheck %s
|
|
// RUN: %target-swift-reflection-dump %t/TypesToReflect | %FileCheck %s
|
|
|
|
// CHECK: FIELDS:
|
|
// CHECK: =======
|
|
// CHECK: TypesToReflect.HasAutoDiffTypes
|
|
// CHECK: aFunction: @differentiable(reverse) (Swift.Float) -> Swift.Float
|
|
// CHECK: (function differentiable=reverse
|