Delete test/embedded/wasm/wasilibc_functions.swift

This commit is contained in:
Max Desiatov
2025-11-03 19:31:02 +00:00
committed by GitHub
parent 26295c88c1
commit a9a72744d9

View File

@@ -1,21 +0,0 @@
// RUN: %target-run-simple-swift(-enable-experimental-feature Embedded -parse-as-library -wmo) | %FileCheck %s
// https://github.com/swiftlang/swift/issues/85272
// UNSUPPORTED: *
// REQUIRES: executable_test
// REQUIRES: OS=wasip1
// REQUIRES: swift_feature_Embedded
import WASILibc
@main struct Main {
static func main() {
puts("Hello")
// CHECK: Hello
let div_result = div(5,2)
print(div_result.quot)
// CHECK: 2
print(div_result.rem)
// CHECK: 1
}
}