Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _longer_name_ (0.39 sec)

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

    func _() {
    /* multi-line func because block is on multiple lines */ }
    
    // test case for issue #19544
    func _() {}
    func _longer_name_() { // this comment must not force the {} from above to alignment
    	// multiple lines
    }
    
    // ellipsis parameters
    func _(...int)
    func _(...*int)
    func _(...[]int)
    func _(...struct{})
    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 _() {
    	/* multi-line func because block is on multiple lines */
    }
    
    // test case for issue #19544
    func _()	{}
    func _longer_name_() {	// this comment must not force the {} from above to alignment
    	// multiple lines
    }
    
    // ellipsis parameters
    func _(...int)
    func _(...*int)
    func _(...[]int)
    func _(...struct{})
    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