2012-02-16 21:49:59 -07:00
|
|
|
// errorcheck
|
2011-07-28 10:31:16 -06:00
|
|
|
|
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// issue 1979
|
|
|
|
// used to get internal compiler error too
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2011-09-20 17:47:17 -06:00
|
|
|
"io/ioutil" // GCCGO_ERROR "imported and not used"
|
2011-11-08 16:38:47 -07:00
|
|
|
"net/http"
|
2012-10-30 21:56:32 -06:00
|
|
|
"os" // GCCGO_ERROR "imported and not used"
|
2011-07-28 10:31:16 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {
|
2011-09-20 17:47:17 -06:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) // ERROR "syntax error|invalid use of type"
|
2011-07-28 10:31:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type Page struct {
|
|
|
|
Title string
|
|
|
|
Body []byte
|
|
|
|
}
|
|
|
|
|