Files
swift-mirror/test/stdlib/Synchronization/Atomics/Basics/AtomicWordPair.swift.gyb
2024-06-04 09:06:37 -07:00

14 lines
379 B
Swift

// RUN: %target-run-simple-swiftgyb
// REQUIRES: executable_test
// REQUIRES: synchronization
%{
from gyb import expand
types = [
# Label Type a b
("WordPair", "WordPair", "WordPair(first: 100, second: 64)", "WordPair(first: 50, second: 32)"),
]
}%
${expand("Tests.gyb-template", line_directive='', types=types)}