aboutsummaryrefslogtreecommitdiff
path: root/test/Import/conversion-decl/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Import/conversion-decl/test.cpp')
-rw-r--r--test/Import/conversion-decl/test.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Import/conversion-decl/test.cpp b/test/Import/conversion-decl/test.cpp
new file mode 100644
index 000000000000..dc9e6d85dd34
--- /dev/null
+++ b/test/Import/conversion-decl/test.cpp
@@ -0,0 +1,5 @@
+// RUN: clang-import-test -import %S/Inputs/F.cpp -expression %s
+void expr() {
+ X X1;
+ Y Y1 = X1;
+}