Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MySigned2_t (0.09 sec)

  1. src/cmd/cgo/internal/test/test.go

    // issue 21708
    #define CAST_TO_INT64 (int64_t)(-1)
    
    // issue 21809
    // Compile C `typedef` to go type aliases.
    
    typedef long MySigned_t;
    // tests alias-to-alias
    typedef MySigned_t MySigned2_t;
    long takes_long(long x) { return x * x; }
    MySigned_t takes_typedef(MySigned_t x) { return x * x; }
    
    // issue 22906
    
    // It's going to be hard to include a whole real JVM to test this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top