[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / SemaCXX / pr28050.cpp
blob57e90eb751696234001a77551d992f9ab4d1d7ad
1 // RUN: %clang_cc1 -triple x86_64-pc-windows-msvc -std=c++11 %s -fsyntax-only
2 //
3 // expected-no-diagnostics
5 class A {
6 public:
7 A(char *s) {}
8 A(A &&) = delete;
9 };
11 int main() { A a("OK"); }