mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
getSingleFrontendInvocationFromDriverArguments is set up to never produce file lists in the output frontend arguments, but since the driver accepts file lists as input arguments, this should too.
9 lines
299 B
Swift
9 lines
299 B
Swift
let x = 10
|
|
x.littleEndian
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: echo %s > %t/tmp.SwiftFileList
|
|
// RUN: %target-swiftc_driver -typecheck @%t/tmp.SwiftFileList
|
|
// RUN: %sourcekitd-test -req=complete -pos=2:3 %s -- @%t/tmp.SwiftFileList | %FileCheck %s -check-prefix=COMPLETE
|
|
// COMPLETE: littleEndian
|