``` inline fun <reified T: Throwable> foo() ...
# announcements
z
Copy code
inline fun <reified T: Throwable> foo() {
	try {
		bar();
	} catch (throwable: T) {
		zip();
	}
}
Reified type is forbidden for catch parameter