Home | History | Annotate | Download | only in inlining

Lines Matching refs:input

3 // RUN: FileCheck --input-file=%t.plist %s
117 void testCopyConstruction(const Wrapper &input) {
120 Wrapper w{input};
125 void testMoveConstruction(MovableWrapper &&input) {
128 MovableWrapper w{move(input)};
132 void testCopyAssignment(const Wrapper &input) {
136 w = input;
141 void testMoveAssignment(MovableWrapper &&input) {
145 w = move(input);