We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using jextract-swift to create Java Classes for the Sources/MySwiftLibrary/SwiftKitSamleApp for the sample SwiftKitSampleApp.
I created the following function just to test something in HelloJava2Swift.swift
public func retrieveToken() -> String { return "test" }
But when I try to do the following in MySwiftLibraryTest.java
@Test void call_retrieveToken() { MySwiftLibrary.retrieveToken(); assertNotNull(MySwiftLibrary.retrieveToken$address()); }
It gives the following error
I'm probably forgetting something important.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using jextract-swift to create Java Classes for the Sources/MySwiftLibrary/SwiftKitSamleApp for the sample SwiftKitSampleApp.
I created the following function just to test something in HelloJava2Swift.swift
But when I try to do the following in MySwiftLibraryTest.java
It gives the following error
I'm probably forgetting something important.
The text was updated successfully, but these errors were encountered: