summaryrefslogtreecommitdiffstats
path: root/src/cmd/covdata/testdata/prog2.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/covdata/testdata/prog2.go')
-rw-r--r--src/cmd/covdata/testdata/prog2.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/cmd/covdata/testdata/prog2.go b/src/cmd/covdata/testdata/prog2.go
new file mode 100644
index 0000000..e51e786
--- /dev/null
+++ b/src/cmd/covdata/testdata/prog2.go
@@ -0,0 +1,29 @@
+// Copyright 2022 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.
+
+package main
+
+import (
+ "os"
+ "prog/dep"
+)
+
+//go:noinline
+func fifth() {
+ println("hubba")
+}
+
+//go:noinline
+func sixth() {
+ println("wha?")
+}
+
+func main() {
+ println(dep.Dep1())
+ if len(os.Args) > 1 {
+ fifth()
+ } else {
+ sixth()
+ }
+}