test/langtools/tools/javac/generics/inference/8158355/T8158355.java
changeset 49518 d0ff431a596e
parent 47216 71c04702a3d5
child 52377 907fdbbdf584
equal deleted inserted replaced
49517:a387ee36e5e0 49518:d0ff431a596e
     1 /*
     1 /*
     2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    25 
    25 
    26 /**
    26 /**
    27  * @test
    27  * @test
    28  * @bug 8158355
    28  * @bug 8158355
    29  * @summary Inference graph dot support broken
    29  * @summary Inference graph dot support broken
    30  * @compile --debug:dumpInferenceGraphsTo=. T8158355.java
    30  * @compile --debug=dumpInferenceGraphsTo=. T8158355.java
    31  */
    31  */
    32 import java.util.List;
    32 import java.util.List;
    33 
    33 
    34 class T8158355 {
    34 class T8158355 {
    35     <Z> List<Z> m() { return null; }
    35     <Z> List<Z> m() { return null; }