mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
278 B
Swift
14 lines
278 B
Swift
// RUN: %target-run-simple-swiftgyb
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: synchronization
|
|
|
|
%{
|
|
from gyb import expand
|
|
|
|
types = [
|
|
# Label Type a b
|
|
("Int64", "Int64", "12", "23"),
|
|
]
|
|
}%
|
|
${expand("Tests.gyb-template", line_directive='', types=types)}
|