<cfcomponent extends="com.Base" output="false"> <cffunction name="Test" access="public" returntype="string" output="false"> <!--- Return test string from both the super component (from extends attribute) and the current component. ---> <cfreturn ( "[ #SUPER.Test()# ] " & "I am com.Test.Test()" ) /> </cffunction> </cfcomponent>