(boundDecl ast.BoundDecl)
| 42 | } |
| 43 | |
| 44 | func checkBoundDecl(boundDecl ast.BoundDecl) []error { |
| 45 | return newDeclChecker(mustDecl([]ast.Atom{docAtomOne, argAtomBar, argAtomBaz}, []ast.BoundDecl{boundDecl}, nil)).check() |
| 46 | } |
| 47 | |
| 48 | func TestBoundsCheckingPositive(t *testing.T) { |
| 49 | tests := []struct { |
no test coverage detected