diff options
| author | Alex Flint <[email protected]> | 2018-12-27 11:11:15 -0800 |
|---|---|---|
| committer | Alex Flint <[email protected]> | 2018-12-27 11:11:15 -0800 |
| commit | 1c224f495bd5a8f0fd55e8d1f68ca1c1f51582e6 (patch) | |
| tree | 1fd9f29416108518134a9adb141cc8251a53fbfa /test/some-program/main.go | |
| parent | f40417ef119019b1c94b79f3f18b7f66b9fb6bce (diff) | |
add integration test that fetches and compiles code using go 1.11
Diffstat (limited to 'test/some-program/main.go')
| -rw-r--r-- | test/some-program/main.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/some-program/main.go b/test/some-program/main.go new file mode 100644 index 0000000..bc6140f --- /dev/null +++ b/test/some-program/main.go @@ -0,0 +1,10 @@ +package main + +import "github.com/alexflint/go-arg" + +func main() { + var args struct { + Test string + } + arg.MustParse(&args) +} |
