local class = {}
class.foo, class.bar = function(x: number): number end, function(y: string): string end
local freeFunctionA, freeFunctionB = function(x: number): number end, function(y: string): string end
baz, qux = function(x: number): number end, function(y: string): string end
local a, b = function(x: number): number end, function(y: string): string end
quux = function(x: number): number end, function(y: string): string end
local fum = function(x: number): number end, function(y: string): string end