This is an automated email from the ASF dual-hosted git repository.
emilles pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
new 3cf01f4538 minor items
3cf01f4538 is described below
commit 3cf01f45382abfac6f736c877ab5314c351b9006
Author: Eric Milles <[email protected]>
AuthorDate: Wed Nov 29 15:36:06 2023 -0600
minor items
---
.../groovy/classgen/asm/sc/StaticCompileFlowTypingTest.groovy | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git
a/src/test/org/codehaus/groovy/classgen/asm/sc/StaticCompileFlowTypingTest.groovy
b/src/test/org/codehaus/groovy/classgen/asm/sc/StaticCompileFlowTypingTest.groovy
index f9013c23fe..0b6cfbb7b2 100644
---
a/src/test/org/codehaus/groovy/classgen/asm/sc/StaticCompileFlowTypingTest.groovy
+++
b/src/test/org/codehaus/groovy/classgen/asm/sc/StaticCompileFlowTypingTest.groovy
@@ -18,12 +18,10 @@
*/
package org.codehaus.groovy.classgen.asm.sc
-import groovy.transform.CompileStatic
import org.junit.Test
import static groovy.test.GroovyAssert.assertScript
-@CompileStatic
final class StaticCompileFlowTypingTest {
@Test
@@ -42,7 +40,8 @@ final class StaticCompileFlowTypingTest {
'''
}
- @Test // GROOVY-9344
+ // GROOVY-9344
+ @Test
void testFlowTyping2() {
assertScript '''
class A {}
@@ -61,7 +60,8 @@ final class StaticCompileFlowTypingTest {
'''
}
- @Test // GROOVY-9344
+ // GROOVY-9344
+ @Test
void testFlowTyping3() {
assertScript '''
class A {}
@@ -81,6 +81,7 @@ final class StaticCompileFlowTypingTest {
}
// GROOVY-8946
+ @Test
void testFlowTyping4() {
assertScript '''
/*@GrabResolver(name='grails',
root='https://repo.grails.org/grails/core')