blob: e1cbce05dcba2b980223b9c3be5a9716da4c6c68 [file] [log] [blame]
Russ Cox3e98a402009-08-12 15:58:31 -07001// errchk $G $D/$F.go
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9import "sort"
10
11func main() {
Russ Cox20011bc2009-09-17 10:27:04 -070012 sort.Sort(nil);
Russ Cox3e98a402009-08-12 15:58:31 -070013 var x int;
Ian Lance Taylorf7e4fc92009-08-17 17:40:52 -070014 sort(x); // ERROR "package"
Russ Cox3e98a402009-08-12 15:58:31 -070015}