summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/use-after-scope-conversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/use-after-scope-conversion.cpp')
-rw-r--r--test/asan/TestCases/use-after-scope-conversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/asan/TestCases/use-after-scope-conversion.cpp b/test/asan/TestCases/use-after-scope-conversion.cpp
index 99b845d07..b3ab50170 100644
--- a/test/asan/TestCases/use-after-scope-conversion.cpp
+++ b/test/asan/TestCases/use-after-scope-conversion.cpp
@@ -20,7 +20,7 @@ struct C {
struct A {
char p;
- explicit A() : p('C') {}
+ A() : p('C') {}
const operator C() const { return C(&p); }
};