Files
kotlin-fork/idea/resources/inspectionDescriptions/RedundantEnumConstructorInvocation.html
T
2019-02-05 11:16:01 +03:00

14 lines
183 B
HTML

<html>
<body>
This inspection reports redundant enum entry constructor invocation:
<pre>
enum class Foo {
A(), // This '()' is redundant.
B(),
C
}
</pre>
</body>
</html>