1// Copyright 2018 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5// This file contains tests for the unmarshal checker. 6 7package unmarshal 8 9import "encoding/json" 10 11func _() { 12 type t struct { 13 a int 14 } 15 var v t 16 17 json.Unmarshal([]byte{}, v) // ERROR "call of Unmarshal passes non-pointer as second argument" 18} 19