Files
swift-mirror/validation-test/compiler_crashers_2/75874d2cf6f384c8.swift
Hamish Knight 760959f273 [test] Add assertion messages to crasher test cases
If the crasher hits an assertion failure, include the message in the
header.
2025-08-04 13:00:23 +01:00

12 lines
517 B
Swift

// {"kind":"typecheck","signature":"swift::constraints::GenericArgumentsMismatchFailure::diagnoseAsError()","signatureAssert":"Assertion failed: (!(purpose == CTP_Unused || purpose == CTP_CannotFail)), function diagnoseAsError"}
// RUN: not --crash %target-swift-frontend -typecheck %s
@propertyWrapper struct a<b{
wrappedValue: b
}
@propertyWrapper struct c<b{
wrappedValue: b
}
{
@c @a var value = if true
let : c<a<Bool>> = _value