SeqCustom.m 383 B

12345678910111213141516171819202122
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build ignore
  5. // +build ignore
  6. #import <Foundation/Foundation.h>
  7. #import <XCTest/XCTest.h>
  8. @import Testpkg;
  9. @interface tests : XCTestCase
  10. @end
  11. @implementation tests
  12. - (void)testBasics {
  13. CustomTestpkgHi();
  14. }
  15. @end