Files
swift-mirror/test/Sema/bitwse_copyable_underscore.swift
2024-09-25 23:18:25 +02:00

8 lines
440 B
Swift

// RUN: %target-typecheck-verify-swift \
// RUN: -disable-availability-checking \
// RUN: -print-diagnostic-groups
struct S : _BitwiseCopyable {} // expected-warning {{'_BitwiseCopyable' is deprecated: Use BitwiseCopyable [DeprecatedDeclaration]}}
func f<T : _BitwiseCopyable>(_ t: T) {} // expected-warning {{'_BitwiseCopyable' is deprecated: Use BitwiseCopyable [DeprecatedDeclaration]}}