package com.mysema.query.codegen; import org.junit.Ignore; import com.mysema.query.annotations.QueryEmbeddable; import com.mysema.query.annotations.QueryEntity; @Ignore public class QueryEmbeddable2Test { @QueryEntity public static class User { Complex complex; } @QueryEmbeddable public static class Complex> implements Comparable> { T a; @Override public int compareTo(Complex arg0) { return 0; } public boolean equals(Object o) { return o == this; } } }