#include <iostream>
#include <cstdlib>

class C {
	float pituh = 0.0f;  // Note: float
};

void func(int C::* ukozatel)
{
	std::cout << "Ukozatel == " << ukozatel << std::endl;	
}

// void func(int float::* ukozatel)
// {
// 	std::cout << "Ukozatel == " << ukozatel << std::endl;	
// }

/*
prog.cpp:13:15: error: cannot combine with previous 'int' declaration specifier
void func(int float::* ukozatel)
              ^
prog.cpp:13:20: error: 'ukozatel' does not point into a class
void func(int float::* ukozatel)
*/

int main()
{
	func(0);
	return EXIT_SUCCESS;
}
