mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
641 B
C++
20 lines
641 B
C++
// RUN: %empty-directory(%t)
|
|
|
|
// RUN: %target-swift-frontend %S/cdecl.swift -typecheck -module-name CdeclFunctions -emit-cxx-header-path %t/functions.h
|
|
|
|
// RUN: %target-clangxx -c %s -I %t -o %t/cdecl-execution.o
|
|
// RUN: %target-build-swift-link-cxx %S/cdecl.swift -o %t/cdecl-execution -Xlinker %t/cdecl-execution.o -module-name Functions -Xfrontend -entry-point-function-name -Xfrontend swiftMain
|
|
|
|
// RUN: %target-codesign %t/cdecl-execution
|
|
// RUN: %target-run %t/cdecl-execution
|
|
|
|
// REQUIRES: executable_test
|
|
|
|
#include <cassert>
|
|
#include "functions.h"
|
|
|
|
int main() {
|
|
assert(CdeclFunctions::differentCDeclName(1, 1) == 2);
|
|
return 0;
|
|
}
|