summaryrefslogtreecommitdiff
path: root/tests/typing/bad/testfile-call-2.cpp
blob: ddf482c140aa8eb818e354451559aadcce8f5e15 (plain) (blame)
1
2
3
4
5
class S { public: int a; };
void f(int x) {}
int main() { S s; f(s); }