mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
These tests exercise the problematic cases where a variable can appear to have multiple types because of how we fail to account for qualified names when comparing type names.
10 lines
112 B
C++
10 lines
112 B
C++
#include "header.h"
|
|
|
|
struct MultipleDefsButSameHeader {
|
|
int i;
|
|
};
|
|
|
|
struct OneDefInDifferentFile {
|
|
int i;
|
|
};
|