Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSeparateFoo (0.22 sec)

  1. src/cmd/go/testdata/script/toolexec.txt

    )
    
    func main() {}
    -- foo_test.go --
    package main
    
    import "testing"
    
    func TestFoo(t *testing.T) {}
    -- foo_separate_test.go --
    package main_test
    
    import "testing"
    
    func TestSeparateFoo(t *testing.T) {}
    -- withcgo/withcgo.go --
    package withcgo
    
    // int fortytwo()
    // {
    //     return 42;
    // }
    import "C"
    -- withcgo/stub.go --
    package withcgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.8K bytes
    - Viewed (0)
Back to top