mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
334 B
Swift
10 lines
334 B
Swift
// RUN: %target-swift-frontend \
|
|
// RUN: -enable-experimental-feature BitwiseCopyable \
|
|
// RUN: %s \
|
|
// RUN: -typecheck -verify
|
|
|
|
// Verify that the BitwiseCopyable feature flag works both in asserts and noasserts builds.
|
|
|
|
struct S : _BitwiseCopyable {
|
|
}
|