github.com/ebitengine/purego@v0.8.0-alpha.2.0.20240512170805-6cd12240d332/internal/buildtest/main.go (about)

     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  }