Files
swift-mirror/test/stdlib/Atomics/Basics/AtomicPointer.swift.gyb
2023-12-18 14:01:16 -05:00

13 lines
292 B
Swift

// RUN: %target-run-simple-swiftgyb
// REQUIRES: executable_test
%{
from gyb import expand
types = [
# Label Type a b
("Pointer", "UnsafePointer<Foo>", "_foo1", "_foo2"),
]
}%
${expand("Tests.gyb-template", line_directive='', types=types)}