From dev-return-4650-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Thu May 3 11:37:56 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 89DDD180625 for ; Thu, 3 May 2018 11:37:55 +0200 (CEST) Received: (qmail 38302 invoked by uid 500); 3 May 2018 09:37:54 -0000 Mailing-List: contact dev-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list dev@groovy.apache.org Received: (qmail 38288 invoked by uid 99); 3 May 2018 09:37:53 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 May 2018 09:37:53 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 7512F1807BC for ; Thu, 3 May 2018 09:37:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 4.771 X-Spam-Level: **** X-Spam-Status: No, score=4.771 tagged_above=-999 required=6.31 tests=[FORGED_HOTMAIL_RCVD2=1.187, KAM_ASCII_DIVIDERS=0.8, KAM_NUMSUBJECT=0.5, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_PASS=-0.001, SPF_SOFTFAIL=0.972, URI_HEX=1.313] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id VBmjmdIochCZ for ; Thu, 3 May 2018 09:37:51 +0000 (UTC) Received: from n5.nabble.com (n5.nabble.com [162.253.133.81]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 82A605F568 for ; Thu, 3 May 2018 09:37:50 +0000 (UTC) Received: from n5.nabble.com (localhost [127.0.0.1]) by n5.nabble.com (Postfix) with ESMTP id C6A1C5E9A645 for ; Thu, 3 May 2018 02:37:47 -0700 (MST) Date: Thu, 3 May 2018 02:37:47 -0700 (MST) From: Daniel Sun To: dev@groovy.incubator.apache.org Message-ID: <1525340267809-0.post@n5.nabble.com> In-Reply-To: References: Subject: Re: [VOTE] Release Apache Groovy 2.5.0-rc-2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit +1 All tests pass, and I built groovy from source code and tested groovy console via the following code, which runs well. ``` class A { enum E { E1, E2 } } class B extends A { E e1() { E.E1 } E e2() { E.E2 } } def b = new B() assert A.E.E1 == b.e1() assert A.E.E2 == b.e2() ``` Here is my machine info: ------------------------------------------------------------ Gradle 4.7 ------------------------------------------------------------ Build time: 2018-04-18 09:09:12 UTC Revision: b9a962bf70638332300e7f810689cb2febbd4a6c Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152 (Oracle Corporation 25.152-b16) OS: Windows 10 10.0 amd64 Cheers, Daniel.Sun -- Sent from: http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html