mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 10:36:07 +00:00

The purpose of this patch is to keep the same functionality without using LookupResult's implicit copy ctor and assignment operator, because they cause warnings when -Wdeprecated is passed. This patch is meant to help the following review: http://reviews.llvm.org/D18123. The functionality is covered by the tests in my original commit (255890) The test case in this patch was added to test a bug caught in the review of the first version of this fix. Differential Revision: http://reviews.llvm.org/D18175 llvm-svn: 263630
16 lines
302 B
C++
16 lines
302 B
C++
// REQUIRES: x86-registered-target
|
|
// RUN: %clang_cc1 -x c++ %s -triple i386-apple-darwin10 -std=c++11 -fasm-blocks -verify
|
|
|
|
class A {
|
|
public:
|
|
void foo(int a) {}
|
|
void foo(float a) {}
|
|
};
|
|
|
|
|
|
void t_fail() {
|
|
__asm {
|
|
mov ecx, [eax]A.foo // expected-error {{Unable to lookup field reference!}}
|
|
}
|
|
}
|