1 | #include <vector> |
---|---|
2 | |
3 | #include <stdio.h> |
4 | #include <stdint.h> |
5 | |
6 | int main (int argc, char const *argv[], char const *envp[]) |
7 | { |
8 | std::vector<long> longs; |
9 | std::vector<short> shorts; |
10 | for (int i=0; i<12; i++) |
11 | { |
12 | longs.push_back(x: i); |
13 | shorts.push_back(x: i); |
14 | } |
15 | return 0; // Set breakpoint here to verify that std::vector 'longs' and 'shorts' have unique types. |
16 | } |
17 |