This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 214b1f249a fix: remove accidental commit inclusion
214b1f249a is described below
commit 214b1f249adae9f019f7710ea53bb92b5f60b734
Author: Paul King <[email protected]>
AuthorDate: Tue Apr 7 13:35:11 2026 +1000
fix: remove accidental commit inclusion
---
.../traitx/TraitASTTransformationTest.groovy | 19 -------------------
1 file changed, 19 deletions(-)
diff --git
a/src/test/groovy/org/codehaus/groovy/transform/traitx/TraitASTTransformationTest.groovy
b/src/test/groovy/org/codehaus/groovy/transform/traitx/TraitASTTransformationTest.groovy
index 8715b32fec..bcb96bb858 100644
---
a/src/test/groovy/org/codehaus/groovy/transform/traitx/TraitASTTransformationTest.groovy
+++
b/src/test/groovy/org/codehaus/groovy/transform/traitx/TraitASTTransformationTest.groovy
@@ -4084,23 +4084,4 @@ final class TraitASTTransformationTest {
new C().test()
'''
}
-
- // GROOVY-11XXX
- @Test
- void testTraitWithStaticFieldAndSpockSpecification() {
- assertScript shell, '''
- @Grab('org.spockframework:spock-core:2.4-groovy-5.0')
- @GrabExclude('org.apache.groovy:*')
- import spock.lang.Specification
-
- @CompileStatic
- trait MyTrait {
- static String myStaticField
- }
-
- @CompileStatic
- abstract class MySpec extends Specification implements MyTrait {
- }
- '''
- }
}