| Summary: | Cast is missing on an any assignment | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Joseph Vincens <jvincens> | ||||
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> | ||||
| Status: | CLOSED FIXED | QA Contact: | |||||
| Severity: | blocker | ||||||
| Priority: | P3 | CC: | jeffdouglas | ||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
fixed the generated code is not correct:
SQLDataSource ds = null;
egl.lang.EglAny a1;
a1 = EglAny.ezeBox(new SQLDataSource(""));
ds = EglAny.asAny(a1);
Created attachment 203593 [details]
report
here's the generation report for the program
fixed again verified |
using the following EGL ds SQLDataSource?; a1 any = new SQLDataSource(""); ds = a1; the assignment ds = a1 is missing a cast.