summaryrefslogtreecommitdiff
path: root/test/some-program/main.go
blob: 34c607771c41896148ce1ab1f4f317c5c72516be (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import "github.com/alexflint/go-arg"

func main() {
	var args struct {
		Test string
	}
	arg.MustParse(&args)
	_ = args.Test
}