motif icon indicating copy to clipboard operation
motif copied to clipboard

Fail gracefully when generic types are illegally used

Open Ericliu001 opened this issue 4 years ago • 0 comments

Fail the following cases with proper error messages.

@motif.Scope
interface FooScope<T> {
    
    @motif.Objects
    abstract class Objects<S>{

        public abstract <T> String s();  
    }
}

Ericliu001 avatar Dec 18 '19 00:12 Ericliu001