⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 partial-specialization.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// Contributed by Gabriel Dos Reis <gdr@codesourcery.com>// Origin: philippeb@videotron.ca// { dg-do compile }struct B{	int i;};template <class _T, class _M, _M _T::* _V>	struct A;template <class _T, int _T::* _V>	struct A<_T, int, _V>	{	};int main(){	A<B, int, & B::i> a;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -