@@ -560,11 +560,11 @@ type BadTypeUsedInTests struct {
Xint"hello"// ERROR "struct field tag"
}
func(t*BadTypeUsedInTests)Scan(xfmt.ScanState,cbyte){// ERROR "method Scan[(]x fmt.ScanState, c byte[)] should have signature Scan[(]fmt.ScanState, rune[)] os.Error"
func(t*BadTypeUsedInTests)Scan(xfmt.ScanState,cbyte){// ERROR "method Scan[(]x fmt.ScanState, c byte[)] should have signature Scan[(]fmt.ScanState, rune[)] error"
}
typeBadInterfaceUsedInTestsinterface{
ReadByte()byte// ERROR "method ReadByte[(][)] byte should have signature ReadByte[(][)] [(]byte, os.Error[)]"
ReadByte()byte// ERROR "method ReadByte[(][)] byte should have signature ReadByte[(][)] [(]byte, error[)]"