main.go raw

   1  // SPDX-License-Identifier: Apache-2.0
   2  // SPDX-FileCopyrightText: 2024 The Ebitengine Authors
   3  
   4  //go:build !windows
   5  
   6  package main
   7  
   8  import (
   9  	_ "github.com/ebitengine/purego"
  10  )
  11  
  12  import "C"
  13  
  14  // This file tests that build Cgo and purego at the same time succeeds to build (#189).
  15  func main() {
  16  }
  17