Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for package_ccc (0.17 sec)

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

    import (
    	mymath "math"
    	"/foo/bar/long_package_path" // a comment
    )
    
    import (
    	"package_a" // comment
    	"package_b"
    	my_better_c "package_c" // comment
    	"package_d" // comment
    	my_e "package_e" // comment
    
    	"package_a"    // comment
    	"package_bb"
    	"package_ccc"  // comment
    	"package_dddd" // comment
    )
    
    // print import paths as double-quoted strings
    // (we would like more test cases but the go/parser
    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

    import (
    	mymath "math"
    	"/foo/bar/long_package_path"	// a comment
    )
    
    import (
    	"package_a"	// comment
    	"package_b"
    	my_better_c "package_c"	// comment
    	"package_d"		// comment
    	my_e "package_e"	// comment
    
    	"package_a"	// comment
    	"package_bb"
    	"package_ccc"	// comment
    	"package_dddd"	// comment
    )
    
    // print import paths as double-quoted strings
    // (we would like more test cases but the go/parser
    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