Consider the following: ```groovy trait T { final def m() { 'T' } } class C implements T { } print new C().m() ``` Should print "T" when compiled and executed. 
Consider the following:
trait T { final def m() { 'T' } } class C implements T { } print new C().m()Should print "T" when compiled and executed.