source: java2python/core/src/test/cyclicref/testcode/Q.java

Last change on this file was 1188, checked in by wouter, 7 weeks ago

#374 introduced @Defer annotation to hint translator to resolve cyclic references

File size: 234 bytes
Line 
1package testcode;
2
3import org.eclipse.jdt.annotation.NonNull;
4
5/**
6 * Test translation of cyclic refs. P refers to Q which refers to P.
7 */
8public class Q {
9
10 private P p = null;
11
12 public void join(@NonNull P p) {
13 this.p = p;
14 }
15
16}
Note: See TracBrowser for help on using the repository browser.