mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Always parse macro expansions, regardless of language mode, and eliminate the fallback path for very, very, very old object literals like `#Color`. Instead, check for the feature flag for macro declaration and at macro expansion time, since this is a semantic restriction. While here, refactor things so the vast majority of the macro-handling logic still applies even if the Swift Swift parser is disabled. Only attempts to expand the macro will fail. This allows us to enable the macro-diagnostics test everywhere.
16 lines
1.2 KiB
Swift
16 lines
1.2 KiB
Swift
// RUN: %empty-directory(%t)
|
|
|
|
// Check that verification won't reject a valid interface:
|
|
// RUN: %target-build-swift -emit-library -enable-library-evolution -emit-module-interface -emit-module -swift-version 5 -o %t/MyModule.o -verify-emitted-module-interface -module-name MyModule %s
|
|
|
|
// Check that verification will reject an invalid interface:
|
|
// RUN: not %target-build-swift -emit-library -enable-library-evolution -emit-module-interface -emit-module -swift-version 5 -o %t/MyModule.o -verify-emitted-module-interface -module-name MyModule -Xfrontend -debug-emit-invalid-swiftinterface-syntax %s 2>&1 | %FileCheck %s
|
|
|
|
// ...but not if verification is off.
|
|
// RUN: %target-build-swift -emit-library -enable-library-evolution -emit-module-interface -emit-module -swift-version 5 -o %t/MyModule.o -no-verify-emitted-module-interface -module-name MyModule -Xfrontend -debug-emit-invalid-swiftinterface-syntax %s
|
|
|
|
public struct MyStruct {}
|
|
|
|
// CHECK: MyModule.swiftinterface:{{[0-9]+}}:{{[0-9]+}}: error: no macro named '__debug_emit_invalid_swiftinterface_syntax__'
|
|
// CHECK: MyModule.swiftinterface:{{[0-9]+}}:{{[0-9]+}}: error: failed to verify module interface of 'MyModule' due to the errors above; the textual interface may be broken by project issues or a compiler bug
|