Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MultiLineSignature5 (0.13 sec)

  1. src/go/printer/testdata/declarations.input

    c int,
    ) {}
    
    func MultiLineSignature3(
    a, b,
    c int, u, v,
    w float,
    		x ...int) {}
    
    func MultiLineSignature4(
    a, b, c int,
    u, v,
    w float,
    		x ...int) {}
    
    func MultiLineSignature5(
    a, b, c int,
    u, v, w float,
    p, q,
    r string,
    		x ...int) {}
    
    // make sure it also works for methods in interfaces
    type _ interface {
    MultiLineSignature0(
    a, b, c int,
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    }
    
    func MultiLineSignature3(
    	a, b,
    	c int, u, v,
    	w float,
    	x ...int) {
    }
    
    func MultiLineSignature4(
    	a, b, c int,
    	u, v,
    	w float,
    	x ...int) {
    }
    
    func MultiLineSignature5(
    	a, b, c int,
    	u, v, w float,
    	p, q,
    	r string,
    	x ...int) {
    }
    
    // make sure it also works for methods in interfaces
    type _ interface {
    	MultiLineSignature0(
    		a, b, c int,
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
Back to top