Files
openide/platform/object-serializer/testSrc/ClassInPoorLanguage.java
Vladimir Krivosheev 6b73f428eb IDEA-CR-48659 kotlin can report constructor parameter names
GitOrigin-RevId: cf1d08ded5d3fe7673d13d3b3b69a99ea238ea94
2019-07-02 06:52:16 +03:00

11 lines
297 B
Java

// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.serialization;
final class ClassInPoorLanguage {
private String foo;
ClassInPoorLanguage(String foo) {
this.foo = foo;
}
}