Repository: groovy Updated Branches: refs/heads/GROOVY_2_6_X 296bf35ef -> fd7601dc4
add missing header Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/22922849 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/22922849 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/22922849 Branch: refs/heads/GROOVY_2_6_X Commit: 229228499579d620ecb99d4a828462c9d08016c0 Parents: 09d4154 Author: paulk <[email protected]> Authored: Tue Mar 6 07:52:52 2018 +1000 Committer: paulk <[email protected]> Committed: Tue Mar 6 07:52:52 2018 +1000 ---------------------------------------------------------------------- .../core/LocalVariableDeclaration_02x.groovy | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/22922849/subprojects/parser-antlr4/src/test/resources/core/LocalVariableDeclaration_02x.groovy ---------------------------------------------------------------------- diff --git a/subprojects/parser-antlr4/src/test/resources/core/LocalVariableDeclaration_02x.groovy b/subprojects/parser-antlr4/src/test/resources/core/LocalVariableDeclaration_02x.groovy index 1e3a2ba..3310e01 100644 --- a/subprojects/parser-antlr4/src/test/resources/core/LocalVariableDeclaration_02x.groovy +++ b/subprojects/parser-antlr4/src/test/resources/core/LocalVariableDeclaration_02x.groovy @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ def (int x, int y) = [1, 2] assert 1 == x assert 2 == y
