Lines Matching refs:LG
26 using LG = std::scoped_lock<>; in main() typedef
27 const LG Orig; in main()
28 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
31 using LG = std::scoped_lock<M>; in main() typedef
32 const LG Orig(m0); in main()
33 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
36 using LG = std::scoped_lock<M, M>; in main() typedef
37 const LG Orig(m0, m1); in main()
38 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
41 using LG = std::scoped_lock<M, M, M>; in main() typedef
42 const LG Orig(m0, m1, m2); in main()
43 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()