mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
11 lines
150 B
C++
11 lines
150 B
C++
|
|
#include "h.h"
|
|
|
|
static void f(void) {
|
|
CA::CB<int> x;
|
|
CA::CB<float> y;
|
|
|
|
x.operator=(x);
|
|
x.operator=(static_cast<CA::CB<int>&&>(x));
|
|
}
|