From 520ad661eb1a6be2f636906d890329309345aa10 Mon Sep 17 00:00:00 2001 From: Eugene Flesselle Date: Sun, 26 Nov 2023 11:55:35 +0100 Subject: [PATCH] Add test from i18764 --- sbt-test/java-compat/i18764/Test.scala | 4 ++++ sbt-test/java-compat/i18764/build.sbt | 9 +++++++++ sbt-test/java-compat/i18764/test | 1 + 3 files changed, 14 insertions(+) create mode 100644 sbt-test/java-compat/i18764/Test.scala create mode 100644 sbt-test/java-compat/i18764/build.sbt create mode 100644 sbt-test/java-compat/i18764/test diff --git a/sbt-test/java-compat/i18764/Test.scala b/sbt-test/java-compat/i18764/Test.scala new file mode 100644 index 000000000000..030afb46b953 --- /dev/null +++ b/sbt-test/java-compat/i18764/Test.scala @@ -0,0 +1,4 @@ + +import org.jooq.impl.TableRecordImpl + +class TRecord extends TableRecordImpl[TRecord](null) {} diff --git a/sbt-test/java-compat/i18764/build.sbt b/sbt-test/java-compat/i18764/build.sbt new file mode 100644 index 000000000000..2ad74478d52b --- /dev/null +++ b/sbt-test/java-compat/i18764/build.sbt @@ -0,0 +1,9 @@ + +scalaVersion := sys.props("plugin.scalaVersion") + +lazy val dependencies = Seq( + "org.jooq" % "jooq-codegen" % "3.18.7", +) + +lazy val jooqtest = (project in file(".")) + .settings(libraryDependencies ++= dependencies) diff --git a/sbt-test/java-compat/i18764/test b/sbt-test/java-compat/i18764/test new file mode 100644 index 000000000000..5df2af1f3956 --- /dev/null +++ b/sbt-test/java-compat/i18764/test @@ -0,0 +1 @@ +> compile