You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniel Sun (JIRA)" <ji...@apache.org> on 2017/02/26 14:51:46 UTC

[jira] [Commented] (GROOVY-6792) ClassFormatError if a method has dots within its name

    [ https://issues.apache.org/jira/browse/GROOVY-6792?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15884775#comment-15884775 ] 

Daniel Sun commented on GROOVY-6792:
------------------------------------

parentheses are required when declaring methods.

The correct code should be as follows:
{code}
class ATest extends TestCase {
  void 'test methods with dots within its name.dot'() {}
}
{code}

> ClassFormatError if a method has dots within its name
> -----------------------------------------------------
>
>                 Key: GROOVY-6792
>                 URL: https://issues.apache.org/jira/browse/GROOVY-6792
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler
>    Affects Versions: 2.2.1, 2.4.0-rc-1
>            Reporter: Maxim Medvedev
>
> I've got a ClassFormatError trying to run something like this:
> {code}
> class ATest extends TestCase {
>   void 'test methods with dots within its name.dot' {}
> }
> {code} 
> Original source is https://github.com/JetBrains/intellij-community/blob/master/java/java-tests/testSrc/com/intellij/refactoring/RenameSuggestionsTest.groovy
> Now it works because all dots are replaced with underscores. 
> Reproduced on Win 8 with Java 1.8 and Groovy 2.2.1. Can't reproduce on Mac with any Java.
>  



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)