From c5a28ed090aba233ad89661ec32874e56949541a Mon Sep 17 00:00:00 2001 From: Dulma Churchill Date: Wed, 12 Feb 2025 10:08:27 -0800 Subject: [PATCH] [swift] Add dependencies to Foundation and UIKit to test that our toolchain supports this Reviewed By: ngorogiannis Differential Revision: D69524473 fbshipit-source-id: b2e3094d3b1f64a580ca8b9922d332c314750de6 --- infer/tests/codetoanalyze/swift/frontend/hello.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infer/tests/codetoanalyze/swift/frontend/hello.swift b/infer/tests/codetoanalyze/swift/frontend/hello.swift index da3441e9fe..4bfba3f6a7 100644 --- a/infer/tests/codetoanalyze/swift/frontend/hello.swift +++ b/infer/tests/codetoanalyze/swift/frontend/hello.swift @@ -1,4 +1,6 @@ +import Foundation +import UIKit + func main() { print("Hello, World!") } -