mirror of
https://github.com/github/codeql.git
synced 2026-02-14 22:21:06 +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));
|
|
}
|