A.java revision 1438:d09ca2242f2f
150397Sobrien/*
250397Sobrien * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
350397Sobrien * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4169689Skan *
5169689Skan * This code is free software; you can redistribute it and/or modify it
650397Sobrien * under the terms of the GNU General Public License version 2 only, as
750397Sobrien * published by the Free Software Foundation.  Oracle designates this
8132718Skan * particular file as subject to the "Classpath" exception as provided
950397Sobrien * by Oracle in the LICENSE file that accompanied this code.
10132718Skan *
1150397Sobrien * This code is distributed in the hope that it will be useful, but WITHOUT
1250397Sobrien * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1350397Sobrien * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1450397Sobrien * version 2 for more details (a copy is included in the LICENSE file that
15132718Skan * accompanied this code).
1650397Sobrien *
1750397Sobrien * You should have received a copy of the GNU General Public License version
1850397Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
1950397Sobrien * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2050397Sobrien *
21132718Skan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22169689Skan * or visit www.oracle.com if you need additional information or have any
23169689Skan * questions.
2450397Sobrien */
25169689Skan
26117395Skanpackage jdk.nashorn.test.models;
27117395Skan
28117395Skanpublic interface A {
29132718Skan    default String a() {
30132718Skan        return "from A.a";
31132718Skan    }
32117395Skan}
33117395Skan