blob: 02814545cc9cc8a6c8f40f07e9eb8c478c4c9b80 [file] [log] [blame]
// Note: this test intentionally uses a private module cache.
//
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -parse -verify -module-cache-path %t/clang-module-cache -I %S/Inputs %s
// RUN: ls -lR %t/clang-module-cache | FileCheck %s
// XFAIL: linux
// CHECK: cfuncs{{.*}}.pcm
import cfuncs
func test_puts(_ s: String) {
_ = puts(s) + 32
}