aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1923/gh326/pkg/BusinessDao.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs1923/gh326/pkg/BusinessDao.java')
-rw-r--r--tests/bugs1923/gh326/pkg/BusinessDao.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs1923/gh326/pkg/BusinessDao.java b/tests/bugs1923/gh326/pkg/BusinessDao.java
new file mode 100644
index 000000000..8ab256912
--- /dev/null
+++ b/tests/bugs1923/gh326/pkg/BusinessDao.java
@@ -0,0 +1,9 @@
+package pkg;
+
+public class BusinessDao<D> {
+
+ public D doSomething() throws SourceException {
+ return (D) new BusinessDto();
+ }
+
+}