File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
test/AutoDiff/Sema/DerivativeRegistrationCrossModule Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
public struct Struct {
2
+ public init ( ) { }
2
3
public func method( _ x: Float ) -> Float { x }
3
-
4
4
public static func + ( _ lhs: Self , rhs: Self ) -> Self {
5
5
lhs
6
6
}
Original file line number Diff line number Diff line change 1
1
// RUN: %empty-directory(%t)
2
2
// RUN: %target-swift-frontend -emit-module -primary-file %S/Inputs/a.swift -emit-module-path %t/a.swiftmodule
3
3
// RUN: %target-swift-frontend -emit-module -primary-file %S/Inputs/b.swift -emit-module-path %t/b.swiftmodule -I %t
4
- // RUN: not --crash %target-swift-frontend-typecheck -verify -I %t %s
4
+ // RUN: %target-swift-frontend-typecheck -verify -I %t %s
5
5
6
6
// SR-12526: Fix cross-module deserialization crash involving `@derivative` attribute.
7
7
You can’t perform that action at this time.
0 commit comments