Add EnumEntries to minimal-stdlib-for-tests

This change allows to revert adding `WITH_STDLIB` directive
to tests which happened at `a9343aeb`.

Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
This commit is contained in:
Nikolay Lunyak
2023-02-13 10:36:52 +02:00
committed by Space Team
parent 3b9724d20e
commit bcfafc601e
497 changed files with 600 additions and 318 deletions
@@ -1,4 +1,3 @@
// WITH_STDLIB
enum class BigEnum {
ITEM1,
ITEM2
@@ -1,4 +1,3 @@
// WITH_STDLIB
@Deprecated("") enum class MyEnum {
FIRST
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
enum class MyClass() {
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
class Foo {
enum class MyClass() {
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
enum class Foo {
A {
fun foo() {}
@@ -1,4 +1,3 @@
// WITH_STDLIB
private enum class MyClass() {
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
// NO_FLAGS because we put enum in companion object of foo. When it will be fixed - MyClass should have ACC_PRIVATE flag
class Foo {
@@ -1,4 +1,3 @@
// WITH_STDLIB
public enum class MyClass() {
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
class Foo {
public enum class MyClass() {
}
@@ -1,4 +1,3 @@
// WITH_STDLIB
enum class Foo {
A, B, C
}
-1
View File
@@ -1,4 +1,3 @@
// WITH_STDLIB
enum class Test {
A
}