Generalisation shows inheritance relationships between actors or use cases. Multiple inheritance is permitted, abstract actors are possible. Sub-actors can access all of their use cases plus those of the super-actor.

digraph {
	nodesep=2
 
	B->A
	D->C
 
	D[shape=star label=B xlabel="Super-actor"]
	C[shape=star label=A xlabel="Sub-actor"]
}