summaryrefslogtreecommitdiff
path: root/9p7.cpp
blob: ec19880342153744317c62f34d52ba70ee7d9bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
#include <vector>

/*
 *
 * 9.7
 *
 *
 */

int main () {
	std::vector<int> a(10,10);
	auto i = a.size(); // It's a std::vector<int>::size_type
	if(i)
	return 0;
}