1// Copyright 2017 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// A package such that there are 3 functions with zero total and covered lines. 6// And one with 1 total and covered lines. Reproduces issue #20515. 7package p 8 9//go:noinline 10func A() { 11 12} 13 14//go:noinline 15func B() { 16 17} 18 19//go:noinline 20func C() { 21 22} 23 24//go:noinline 25func D() int64 { 26 return 42 27} 28