mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
312 B
Swift
10 lines
312 B
Swift
// RUN: %target-typecheck-verify-swift -swift-version 4
|
|
|
|
// In -swift-version 4 mode, the old spelling is silently parsed as the new spelling.
|
|
|
|
@_inlineable public func oldInlinableFunction() {}
|
|
@_versioned func oldVersionedFunction() {}
|
|
|
|
// No warning here
|
|
@_inlineable @_versioned func redundantAttribute() {}
|