Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gggggggggggg (0.08 sec)

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

    	f()
    	fffffg()
    }
    
    type _ interface {  // this comment must not change indentation
    	EI  // here's a comment
    	f()  // no blank between identifier and ()
    	fffff()  // no blank between identifier and ()
    	gggggggggggg(x, y, z int) ()  // hurray
    }
    
    
    // formatting of variable declarations
    func _() {
    	type day struct { n int; short, long string }
    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    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

    	fffffg()
    }
    
    type _ interface {	// this comment must not change indentation
    	EI				// here's a comment
    	f()				// no blank between identifier and ()
    	fffff()				// no blank between identifier and ()
    	gggggggggggg(x, y, z int)	// hurray
    }
    
    // formatting of variable declarations
    func _() {
    	type day struct {
    		n		int
    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    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