blob: a6fa000319ca4cf3f8f3ced2a4f75cbc9cdda7bd [file] [log] [blame]
Anders Carlsson2b77ba82009-04-04 20:47:02 +00001// RUN: clang-cc -emit-llvm %s -o %t &&
2struct C {
3 void f();
4};
5
6// RUN: grep "define void @_ZN1C1fEv" %t | count 1 &&
7void C::f() {
8}
9
10// RUN: grep "call void @_ZN1C1fEv" %t | count 1
11void f() {
12 C c;
13
14 c.f();
15}